Makefile.autotools.in: Get my $(Q)'s in the correct place

Minor fix for Makefile.autotools.in that deals with the packages
that use AUTOCONF to regenerate configure etc. 
(my mistake to start with)

Daniel Laird
This commit is contained in:
Daniel Laird 2008-09-19 14:43:50 +00:00
parent 4ab8aa443b
commit 52097d2dad
1 changed files with 2 additions and 2 deletions

View File

@ -202,8 +202,8 @@ $(BUILD_DIR)/%/.stamp_autoconfigured:
$(call MESSAGE,"Running autoreconf") $(call MESSAGE,"Running autoreconf")
$(Q)cd $(@D)/$($(PKG)_SUBDIR) && $(AUTORECONF) $(Q)cd $(@D)/$($(PKG)_SUBDIR) && $(AUTORECONF)
# if the package uses libtool, patch it for cross-compiling in buildroot # if the package uses libtool, patch it for cross-compiling in buildroot
if test "$($(PKG)_LIBTOOL_PATCH)" = "YES"; then \ $(Q)if test "$($(PKG)_LIBTOOL_PATCH)" = "YES"; then \
$(Q)for i in `find $(@D)/$($(PKG)_SUBDIR) -name ltmain.sh`; do \ for i in `find $(@D)/$($(PKG)_SUBDIR) -name ltmain.sh`; do \
toolchain/patch-kernel.sh $${i%/*} package buildroot-libtool.patch; \ toolchain/patch-kernel.sh $${i%/*} package buildroot-libtool.patch; \
done \ done \
fi fi