diff options
author | est31 <MTest31@outlook.com> | 2015-06-11 23:56:54 +0200 |
---|---|---|
committer | est31 <MTest31@outlook.com> | 2015-06-11 23:56:54 +0200 |
commit | c849d32a1063be8d4e7e766341422d3f8d9d7a37 (patch) | |
tree | 9411a89e0b645b2acf7593e5e2ccb87a9e89e093 /build/android/Makefile | |
parent | 05f4e9ee08f93b17c3dbaf2b6a1022cc28a226ce (diff) | |
download | minetest-c849d32a1063be8d4e7e766341422d3f8d9d7a37.tar.gz minetest-c849d32a1063be8d4e7e766341422d3f8d9d7a37.tar.bz2 minetest-c849d32a1063be8d4e7e766341422d3f8d9d7a37.zip |
Reposition irrlicht timestamp in makefile
Diffstat (limited to 'build/android/Makefile')
-rw-r--r-- | build/android/Makefile | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/build/android/Makefile b/build/android/Makefile index b11d73972..1b33a4599 100644 --- a/build/android/Makefile +++ b/build/android/Makefile @@ -399,12 +399,6 @@ freetype_download : git clone ${FREETYPE_URL_GIT} || exit 1; \ fi -$(IRRLICHT_TIMESTAMP) : irrlicht_download - @LAST_MODIF=$$(find ${IRRLICHT_DIR} -type f -printf '%T@ %p\n' | sort -n | tail -1 | cut -f2- -d" "); \ - if [ $$(basename $$LAST_MODIF) != "timestamp" ] ; then \ - touch ${IRRLICHT_TIMESTAMP}; \ - fi - freetype : $(FREETYPE_LIB) $(FREETYPE_LIB) : $(FREETYPE_TIMESTAMP) @@ -454,6 +448,12 @@ irrlicht_download : patch -p1 < ../../irrlicht-texturehack.patch || exit 1; \ fi +$(IRRLICHT_TIMESTAMP) : irrlicht_download + @LAST_MODIF=$$(find ${IRRLICHT_DIR} -type f -printf '%T@ %p\n' | sort -n | tail -1 | cut -f2- -d" "); \ + if [ $$(basename $$LAST_MODIF) != "timestamp" ] ; then \ + touch ${IRRLICHT_TIMESTAMP}; \ + fi + irrlicht : $(IRRLICHT_LIB) $(IRRLICHT_LIB): $(IRRLICHT_TIMESTAMP) $(FREETYPE_LIB) |