summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2010-09-14 17:12:45 (GMT)
committerCMake Topic Stage <kwrobot@kitware.com>2010-09-14 17:12:45 (GMT)
commit6426a86d5ede25f8c3178b120fef6214e959983b (patch)
tree88248cf1f0d97dbee2c8dc0d4d18b883cf3f0d6c
parent6afc8fed1303b2439b6b6a5e6d28d4990aeea424 (diff)
parentc7aa38ff39651479127a55c33935486d9d8fe6fb (diff)
downloadCMake-6426a86d5ede25f8c3178b120fef6214e959983b.zip
CMake-6426a86d5ede25f8c3178b120fef6214e959983b.tar.gz
CMake-6426a86d5ede25f8c3178b120fef6214e959983b.tar.bz2
Merge topic 'bootstrap-cflags'
c7aa38f bootstrap: Honor CFLAGS during "make" test (#10545)
-rwxr-xr-xbootstrap2
1 files changed, 1 insertions, 1 deletions
diff --git a/bootstrap b/bootstrap
index 01d9e15..0da868d 100755
--- a/bootstrap
+++ b/bootstrap
@@ -839,7 +839,7 @@ mkdir "${cmake_bootstrap_dir}/${TMPFILE}"
cd "${cmake_bootstrap_dir}/${TMPFILE}"
echo '
test: test.c
- "'"${cmake_c_compiler}"'" -o test test.c
+ "'"${cmake_c_compiler}"'" '"${cmake_ld_flags} ${cmake_c_flags}"' -o test test.c
'>"Makefile"
echo '
#include <stdio.h>