Explorar o código

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
Daniel Laird %!s(int64=17) %!d(string=hai) anos
pai
achega
52097d2dad
Modificáronse 1 ficheiros con 2 adicións e 2 borrados
  1. 2 2
      package/Makefile.autotools.in

+ 2 - 2
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