mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-12-25 06:14:37 +02: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:
parent
ea5fac303f
commit
013ef04c6c
@ -30,6 +30,16 @@ $(eval $(call Require,working-make, \
|
|||||||
Please install GNU make v3.81 or later. (This version has bugs) \
|
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
|
define Require/working-gcc
|
||||||
echo 'int main(int argc, char **argv) { return 0; }' | \
|
echo 'int main(int argc, char **argv) { return 0; }' | \
|
||||||
gcc -x c -o $(TMP_DIR)/a.out -
|
gcc -x c -o $(TMP_DIR)/a.out -
|
||||||
|
Loading…
Reference in New Issue
Block a user