summaryrefslogtreecommitdiffstats
path: root/include/prereq-build.mk
diff options
context:
space:
mode:
authornbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2007-07-23 02:56:30 +0000
committernbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2007-07-23 02:56:30 +0000
commitabafc3e8e32136cedcbe12aa94fd4735e6d26644 (patch)
treebb23ae4069e0a9ec02c137ad501e413a64309497 /include/prereq-build.mk
parent733afec119e8534adcb40aa407636e196084d7e4 (diff)
add better working-g++ check (patch from #2017)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@8118 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'include/prereq-build.mk')
-rw-r--r--include/prereq-build.mk3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/prereq-build.mk b/include/prereq-build.mk
index 6311e601b..c31020c32 100644
--- a/include/prereq-build.mk
+++ b/include/prereq-build.mk
@@ -52,7 +52,8 @@ $(eval $(call Require,working-gcc, \
define Require/working-g++
echo 'int main(int argc, char **argv) { return 0; }' | \
- g++ -x c++ -o $(TMP_DIR)/a.out -lstdc++ -
+ g++ -x c++ -o $(TMP_DIR)/a.out -lstdc++ - && \
+ $(TMP_DIR)/a.out
endef
$(eval $(call Require,working-g++, \