This is the mail archive of the libc-alpha@sources.redhat.com mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

value of $(AUTOCONF) in Makefile


Hi,

Configuring with --with-cvs gives a "make" failure for me, attempting to
execute the command
     sysdeps/i386/elf/configure.in > sysdeps/i386/elf/configure.new
The problem is that 'configure' has set AUTOCONF to empty but the Makefile
expects it to be set to 'no'.

Furthermore the "if" test in configure.in performs the contrary of what is
listed in Roland's ChangeLog entry from 2002-11-24.


2003-04-27  Bruno Haible  <bruno at clisp dot org>

	* configure.in: Set AUTOCONF: if --without-cvs is not given, search
	for it, otherwise set it to 'no'.

--- glibc-20030425.orig/configure.in	2003-04-22 15:10:29.000000000 +0200
+++ glibc-20030425/configure.in	2003-04-27 13:47:33.000000000 +0200
@@ -721,7 +721,7 @@
   [3.0[2-9]*|3.[1-9]*|[4-9]*],
   SED=: aux_missing="$aux_missing sed")
 
-if test "x$with_cvs" != xyes; then
+if test "x$with_cvs" = xyes; then
   AC_CHECK_PROGS(AUTOCONF, autoconf, no)
   case "x$AUTOCONF" in
   xno|x|x:) AUTOCONF=no ;;
@@ -737,6 +737,9 @@
     ;;
   esac
   test "x$AUTOCONF" != xno || aux_missing="$aux_missing autoconf"
+else
+  AUTOCONF=no
+  AC_SUBST(AUTOCONF)
 fi
 
 test -n "$critic_missing" && AC_MSG_ERROR([


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]