Hi, "Alfred M. Szmidt" <[email protected]> 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 <[email protected]> (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’.
