diff options
author | Daniel Laird <danieljlaird@hotmail.com> | 2008-09-19 14:43:50 +0000 |
---|---|---|
committer | Daniel Laird <danieljlaird@hotmail.com> | 2008-09-19 14:43:50 +0000 |
commit | 52097d2dad0f4fb832ece0aab44c1d08b583d4e8 (patch) | |
tree | ce5a6be1dce41c2a223f25920336961ced51257e | |
parent | 4ab8aa443baf16e2a15844d8edfad2a198025a16 (diff) | |
download | buildroot-novena-52097d2dad0f4fb832ece0aab44c1d08b583d4e8.tar.gz buildroot-novena-52097d2dad0f4fb832ece0aab44c1d08b583d4e8.zip |
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
-rw-r--r-- | package/Makefile.autotools.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/package/Makefile.autotools.in b/package/Makefile.autotools.in index 5f2246e84..9c1697282 100644 --- a/package/Makefile.autotools.in +++ b/package/Makefile.autotools.in @@ -202,8 +202,8 @@ $(BUILD_DIR)/%/.stamp_autoconfigured: $(call MESSAGE,"Running autoreconf") $(Q)cd $(@D)/$($(PKG)_SUBDIR) && $(AUTORECONF) # if the package uses libtool, patch it for cross-compiling in buildroot - if test "$($(PKG)_LIBTOOL_PATCH)" = "YES"; then \ - $(Q)for i in `find $(@D)/$($(PKG)_SUBDIR) -name ltmain.sh`; do \ + $(Q)if test "$($(PKG)_LIBTOOL_PATCH)" = "YES"; then \ + for i in `find $(@D)/$($(PKG)_SUBDIR) -name ltmain.sh`; do \ toolchain/patch-kernel.sh $${i%/*} package buildroot-libtool.patch; \ done \ fi |