summaryrefslogtreecommitdiff
path: root/solenv
diff options
context:
space:
mode:
authorJan Holesovsky <kendy@suse.cz>2011-07-25 13:24:09 +0200
committerJan Holesovsky <kendy@suse.cz>2011-07-25 13:24:09 +0200
commit23960781be77f06084024c56af977e83583d310b (patch)
tree63e260c5361b3cee4bd97a48deffa5a16cfc2092 /solenv
parentd78bb867f4ded5584bba8ce0ec46fcef14b91773 (diff)
Use --filesync instead of -FS as the zip option.
Diffstat (limited to 'solenv')
-rw-r--r--solenv/gbuild/Zip.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/solenv/gbuild/Zip.mk b/solenv/gbuild/Zip.mk
index 023fe3655d7f..1ed83cc68952 100644
--- a/solenv/gbuild/Zip.mk
+++ b/solenv/gbuild/Zip.mk
@@ -38,11 +38,11 @@ $(call gb_Zip_get_clean_target,%) :
rm -f $(call gb_Zip_get_outdir_target,$*))
# rule to create zip package in workdir
-# -FS makes sure that all files in the zip package will be removed that no longer are in $(FILES)
+# --filesync makes sure that all files in the zip package will be removed that no longer are in $(FILES)
$(call gb_Zip_get_target,%) :
$(call gb_Helper_abbreviate_dirs_native,\
mkdir -p $(dir $(call gb_Zip_get_target,$*)) && \
- cd $(LOCATION) && $(gb_Zip_ZIPCOMMAND) -rX -FS $(call gb_Zip_get_target,$*) $(FILES) )
+ cd $(LOCATION) && $(gb_Zip_ZIPCOMMAND) -rX --filesync $(call gb_Zip_get_target,$*) $(FILES) )
# the final target is a touch target; we use it as registered targets should be in workdir, not in outdir
# the outdir target depends on the workdir target and is built by delivering the latter