[Libreoffice] [PATCH] remove -d from gunzip flags
Robert Nagy
robert at openbsd.org
Fri Nov 5 12:31:53 PDT 2010
-d is not needed for gunzip because it will do a decompress
anyways and -d is not available in every gunzip implementation
---
packimages/pack/makefile.mk | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/packimages/pack/makefile.mk b/packimages/pack/makefile.mk
index 471f5b5..fe82263 100644
--- a/packimages/pack/makefile.mk
+++ b/packimages/pack/makefile.mk
@@ -93,7 +93,7 @@ $(MISC)$/oxygen.flag : $(OXYGEN_TARBALL)
# unpack the classic icon set
$(MISC)$/classic.flag : $(CLASSIC_TARBALL)
- cd $(MISC) && gunzip -d -c $(CLASSIC_TARBALL) | ( tar -xf - ) && $(TOUCH) $(@:f)
+ cd $(MISC) && gunzip -c $(CLASSIC_TARBALL) | ( tar -xf - ) && $(TOUCH) $(@:f)
.IF "$(GUI)"=="UNX"
chmod -R g+w $(MISC)$/classic
.ENDIF
--
1.7.3.1
More information about the LibreOffice
mailing list