bug-inetutils
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [bug-inetutils] Re: Continuous builds on Hydra


From: Ludovic Courtès
Subject: Re: [bug-inetutils] Re: Continuous builds on Hydra
Date: Fri, 11 Dec 2009 01:21:37 +0100
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/23.1 (gnu/linux)

Hi,

"Alfred M. Szmidt" <address@hidden> writes:

> I looked quickly at the script, it say:
>
>         # Somehow "make dist" alone fails.
>
> Why is this the case?  Can you try to reproduce the problem and see if
> you can fix it?

Here’s the log: http://hydra.nixos.org/build/175493/log/raw .

Under ‘tests’ “make dist” tries to build $(check_PROGRAMS), which fails
because libgnu.a wasn’t built.

This patch fixes it:

2009-12-11  Ludovic Courtès  <address@hidden> (tiny change)

        * tests/Makefile.am (EXTRA_DIST): Set to $(check_SCRIPTS), not
        $(TESTS).

diff --git a/tests/Makefile.am b/tests/Makefile.am
index e653fbe..fd993cc 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -24,6 +24,6 @@ check_PROGRAMS = localhost
 check_SCRIPTS = ping-localhost.sh traceroute-localhost.sh
 TESTS = $(check_PROGRAMS) $(check_SCRIPTS)
 
-EXTRA_DIST = $(TESTS)
+EXTRA_DIST = $(check_SCRIPTS)
 
 TESTS_ENVIRONMENT = EXEEXT=$(EXEEXT)
Thanks,
Ludo’.

reply via email to

[Prev in Thread] Current Thread [Next in Thread]