Skip to content

Commit c849d32

Browse files
committedJun 11, 2015
Reposition irrlicht timestamp in makefile
1 parent 05f4e9e commit c849d32

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed
 

Diff for: ‎build/android/Makefile

+6-6
Original file line numberDiff line numberDiff line change
@@ -399,12 +399,6 @@ freetype_download :
399399
git clone ${FREETYPE_URL_GIT} || exit 1; \
400400
fi
401401

402-
$(IRRLICHT_TIMESTAMP) : irrlicht_download
403-
@LAST_MODIF=$$(find ${IRRLICHT_DIR} -type f -printf '%T@ %p\n' | sort -n | tail -1 | cut -f2- -d" "); \
404-
if [ $$(basename $$LAST_MODIF) != "timestamp" ] ; then \
405-
touch ${IRRLICHT_TIMESTAMP}; \
406-
fi
407-
408402
freetype : $(FREETYPE_LIB)
409403

410404
$(FREETYPE_LIB) : $(FREETYPE_TIMESTAMP)
@@ -454,6 +448,12 @@ irrlicht_download :
454448
patch -p1 < ../../irrlicht-texturehack.patch || exit 1; \
455449
fi
456450

451+
$(IRRLICHT_TIMESTAMP) : irrlicht_download
452+
@LAST_MODIF=$$(find ${IRRLICHT_DIR} -type f -printf '%T@ %p\n' | sort -n | tail -1 | cut -f2- -d" "); \
453+
if [ $$(basename $$LAST_MODIF) != "timestamp" ] ; then \
454+
touch ${IRRLICHT_TIMESTAMP}; \
455+
fi
456+
457457
irrlicht : $(IRRLICHT_LIB)
458458

459459
$(IRRLICHT_LIB): $(IRRLICHT_TIMESTAMP) $(FREETYPE_LIB)

0 commit comments

Comments
 (0)
Please sign in to comment.