diff options
author | Tor Lillqvist <tlillqvist@novell.com> | 2010-09-14 12:04:44 +0200 |
---|---|---|
committer | Fridrich Štrba <fridrich.strba@bluewin.ch> | 2010-09-14 12:04:44 +0200 |
commit | b92f00ea63fe4455abe3bfe1e69467a1ae416f91 (patch) | |
tree | 3b1fcfea4b8e4a3e95396f30f23820873899cecd | |
parent | a4d7f9181ef50cfe2cfd3b017d4af6e092daaa25 (diff) |
win32-cygwin-1.7.diff: Fix windows build using cygwin 1.7
i#59477
-rw-r--r-- | 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 48a6c46..38777f2 100644 --- a/packimages/pack/makefile.mk +++ b/packimages/pack/makefile.mk @@ -91,7 +91,7 @@ $(MISC)$/oxygen.flag : $(OXYGEN_TARBALL) # unpack the classic icon set $(MISC)$/classic.flag : $(CLASSIC_TARBALL) - cd $(MISC) && gunzip -c $(CLASSIC_TARBALL) | ( tar -xf - ) && $(TOUCH) $(@:f) + cd $(MISC) && gunzip -d -c $(CLASSIC_TARBALL) | ( tar -xf - ) && $(TOUCH) $(@:f) .IF "$(GUI)"=="UNX" chmod -R g+w $(MISC)$/classic .ENDIF |