diff options
author | Felix Fietkau <nbd@openwrt.org> | 2009-09-25 09:28:14 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2009-09-25 09:28:14 +0000 |
commit | db2504f9a53e9be71db6dc3d7174ad44379e6c02 (patch) | |
tree | 2feb7d31dbc4aa88328fabdcb2ef240b5e47a2b9 | |
parent | 22c662287980777d0cafe083803d7bb7a36f3964 (diff) | |
download | upstream-db2504f9a53e9be71db6dc3d7174ad44379e6c02.tar.gz upstream-db2504f9a53e9be71db6dc3d7174ad44379e6c02.tar.bz2 upstream-db2504f9a53e9be71db6dc3d7174ad44379e6c02.zip |
host build: do not hide the configure command
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@17716 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r-- | include/host-build.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/host-build.mk b/include/host-build.mk index 4bac680147..2da41cc083 100644 --- a/include/host-build.mk +++ b/include/host-build.mk @@ -54,7 +54,7 @@ HOST_CONFIGURE_ARGS = \ HOST_CONFIGURE_CMD = ./configure define Host/Configure/Default - @(cd $(HOST_BUILD_DIR)/$(3); \ + (cd $(HOST_BUILD_DIR)/$(3); \ if [ -x configure ]; then \ $(CP) $(SCRIPT_DIR)/config.{guess,sub} $(HOST_BUILD_DIR)/$(3)/ && \ $(2) \ |