diff options
author | Michael Stahl <mstahl@redhat.com> | 2013-03-12 22:06:21 +0100 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2013-03-13 14:33:56 +0100 |
commit | ec8d4b1d23e85cc27f1d08e1b1ed9c18e63f7a3c (patch) | |
tree | 54f8f141f436a00ab2ee25de27bb082c4f259245 /extras | |
parent | 5c57a102efb261975b89729e4e4042c5848af174 (diff) |
gbuild: use zip --must-match to fail if input files are missing
With the last "find" call to determine inputs removed, this should
hopefully work reliably now.
Change-Id: Ie725e29d0889ec40cefc961ff61b2cf29839fb66
Diffstat (limited to 'extras')
-rw-r--r-- | extras/CustomTarget_autocorr.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extras/CustomTarget_autocorr.mk b/extras/CustomTarget_autocorr.mk index b04bebf2647c..ea2838d927c2 100644 --- a/extras/CustomTarget_autocorr.mk +++ b/extras/CustomTarget_autocorr.mk @@ -291,7 +291,7 @@ $(call gb_CustomTarget_get_workdir,extras/source/autotext)/%.dat : $(call gb_Output_announce,$*.dat,$(true),ZIP,2) $(call gb_Helper_abbreviate_dirs,\ cd $(EXTRAS_AUTOCORR_DIR) && \ - zip -qrX --filesync $@ $(EXTRAS_AUTOCORR_FILES) \ + zip -qrX --filesync --must-match $@ $(EXTRAS_AUTOCORR_FILES) \ ) define extras_Autocorr_make_file_deps |