diff options
author | Felix Fietkau <nbd@openwrt.org> | 2007-07-23 02:56:30 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2007-07-23 02:56:30 +0000 |
commit | 1883949d79369e45514a5a8a69da2e4eb5096bb0 (patch) | |
tree | 553bf4acd478ccd948627a2e2a4f1cf95a1c1d25 /include | |
parent | 50d052a1ebd6f81ce5efd421b3f9a1685a7a148c (diff) | |
download | mtk-20170518-1883949d79369e45514a5a8a69da2e4eb5096bb0.zip mtk-20170518-1883949d79369e45514a5a8a69da2e4eb5096bb0.tar.gz mtk-20170518-1883949d79369e45514a5a8a69da2e4eb5096bb0.tar.bz2 |
add better working-g++ check (patch from #2017)
SVN-Revision: 8118
Diffstat (limited to 'include')
-rw-r--r-- | include/prereq-build.mk | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/prereq-build.mk b/include/prereq-build.mk index 6311e60..c31020c 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++, \ |