Kaydet (Commit) 493bb354 authored tarafından Damjan Jovanovic's avatar Damjan Jovanovic

Passing both -u and -o to unzip is ambiguous, as -u only overwrites files that are older

while -o always overwrites them. What's worse, on FreeBSD using -u and -o together
is an error that breaks the build. Tests show Info-ZIP's unzip treats -u and -o together
as just -u, so let's call unzip with just -u.
üst 7b5912ea
......@@ -100,7 +100,7 @@ $(CPP_DOCU_INDEX_FILE) : $(CPP_DOCU_CLEANUP_FLAG)
$(JAVA_SRC_FILES) : $(SOLARCOMMONBINDIR)$/$$(@:f)
-$(MKDIRHIER) $(@:d)
$(MY_COPY) $< $@
cd $(JAVA_SRC_DIR) && unzip -quo $(@:f)
cd $(JAVA_SRC_DIR) && unzip -qu $(@:f)
#$(JAVA_SRC_DIR)$/com$/sun$/star$/beans$/%.java : $(PRJ)$/source$/bean$/com$/sun$/star$/beans$/%.java
# -$(MKDIRHIER) $(@:d)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment