diff options
author | Caolán McNamara <caolanm@redhat.com> | 2012-05-13 09:47:52 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2012-05-13 09:50:42 +0100 |
commit | 2068144fdcfdee3abe2a90b3b4b3bd49589618f2 (patch) | |
tree | a389d24fdf51b5908bbe589698c6062556fa38e9 /icu/makefile.mk | |
parent | 46f10590837f566284470cff8ac95b122e12b147 (diff) |
ensure freshly built icu headers are newer than previous headers
Change-Id: I Icf78937810e1d8ac646805d9f523a4149f45acb5
Diffstat (limited to 'icu/makefile.mk')
-rw-r--r-- | icu/makefile.mk | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/icu/makefile.mk b/icu/makefile.mk index ce54ff581ad2..38bbcddedd93 100644 --- a/icu/makefile.mk +++ b/icu/makefile.mk @@ -278,6 +278,10 @@ OUT2BIN= \ .ENDIF .ENDIF # "$(GUI)"=="WNT" +#make sure that when we deliver the headers of a new icu that the timestamps +#are newer than the last icu to ensure dependencies are correctly rebuilt +INSTALL_ACTION=find . -name "*.h" -print0 | xargs -0 touch + # --- Targets ------------------------------------------------------ .INCLUDE : set_ext.mk @@ -324,4 +328,3 @@ $(LB)$/icutu$(ICU_BUILD_LIBPOST).lib : $(PACKAGE_DIR)$/$(PREDELIVER_FLAG_FILE) # Changes in this makefile could also make a complete build necessary if # configure is affected. $(PACKAGE_DIR)$/$(UNTAR_FLAG_FILE) : makefile.mk - |