]> rtime.felk.cvut.cz Git - coffee/buildroot.git/commitdiff
autoconf: add missing AUTOMAKE variable setting
authorLionel Landwerlin <llandwerlin@gmail.com>
Fri, 30 Apr 2010 00:24:12 +0000 (02:24 +0200)
committerPeter Korsgaard <jacmet@sunsite.dk>
Sun, 2 May 2010 07:40:49 +0000 (09:40 +0200)
Signed-off-by: Lionel Landwerlin <llandwerlin@gmail.com>
Acked-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
package/autoconf/autoconf.mk
package/automake/automake.mk

index b7c1fe4d1942de28a754e0d58d6cceecb7c081f6..722165c52951acbaed702d0044b1adb68ad41aa7 100644 (file)
@@ -27,4 +27,4 @@ $(eval $(call AUTOTARGETS,package,autoconf,host))
 # variables used by other packages
 AUTOCONF:=$(HOST_DIR)/usr/bin/autoconf
 AUTOHEADER:=$(HOST_DIR)/usr/bin/autoheader
-AUTORECONF=$(HOST_CONFIGURE_OPTS) ACLOCAL="$(ACLOCAL)" AUTOHEADER="$(AUTOHEADER)" $(HOST_DIR)/usr/bin/autoreconf -v -f -i -I "$(ACLOCAL_DIR)"
+AUTORECONF=$(HOST_CONFIGURE_OPTS) ACLOCAL="$(ACLOCAL)" AUTOHEADER="$(AUTOHEADER)" AUTOMAKE="$(AUTOMAKE)" $(HOST_DIR)/usr/bin/autoreconf -v -f -i -I "$(ACLOCAL_DIR)"
index db935a4661e2428ee196d23beabc37ca76cd7ffc..46bb773a119f638bd71142f349989669c65252ee 100644 (file)
@@ -25,6 +25,6 @@ $(eval $(call AUTOTARGETS,package,automake))
 $(eval $(call AUTOTARGETS,package,automake,host))
 
 # variables used by other packages
-AUTOMAKE:=$(HOST_DIR)/usr/bin/automake
+AUTOMAKE = $(HOST_DIR)/usr/bin/automake
 ACLOCAL_DIR = $(STAGING_DIR)/usr/share/aclocal
 ACLOCAL = $(HOST_DIR)/usr/bin/aclocal -I $(ACLOCAL_DIR)