1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-06-25 09:08:53 +03:00

add prereq check for case-sensitive filesystem

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@5073 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nbd 2006-10-14 11:23:23 +00:00
parent ea5fac303f
commit 013ef04c6c

View File

@ -30,6 +30,16 @@ $(eval $(call Require,working-make, \
Please install GNU make v3.81 or later. (This version has bugs) \
))
define Require/case-sensitive-fs
rm -f $(TMP_DIR)/test.*
touch $(TMP_DIR)/test.fs
[ \! -f $(TMP_DIR)/test.FS ]
endef
$(eval $(call Require,case-sensitive-fs, \
OpenWrt can only be built on a case-sensitive filesystem \
))
define Require/working-gcc
echo 'int main(int argc, char **argv) { return 0; }' | \
gcc -x c -o $(TMP_DIR)/a.out -