diff options
author | Chris Sutcliffe <ir0nh34d@users.sourceforge.net> | 2010-08-27 21:11:29 +0000 |
---|---|---|
committer | Chris Sutcliffe <ir0nh34d@users.sourceforge.net> | 2010-08-27 21:11:29 +0000 |
commit | d27709722cf40870fd68be5de8fb2ec950fe01b6 (patch) | |
tree | 45dac0ca3bb310a6b72bf77414306b5f1dc94d60 /winsup | |
parent | 6c43f249acd6d19a09ae0537958c802f0ec13b24 (diff) | |
download | newlib-d27709722cf40870fd68be5de8fb2ec950fe01b6.zip newlib-d27709722cf40870fd68be5de8fb2ec950fe01b6.tar.gz newlib-d27709722cf40870fd68be5de8fb2ec950fe01b6.tar.bz2 |
2010-08-26 Chris Sutcliffe <ir0nh34d@users.sourceforge.net>
* Makefile.in: Update naming convention and compression format (lzma),
leaving existing naming convention and compression format as is for Cygwin.
Diffstat (limited to 'winsup')
-rw-r--r-- | winsup/w32api/ChangeLog | 5 | ||||
-rw-r--r-- | winsup/w32api/Makefile.in | 6 |
2 files changed, 8 insertions, 3 deletions
diff --git a/winsup/w32api/ChangeLog b/winsup/w32api/ChangeLog index 883374c..3e6a02c 100644 --- a/winsup/w32api/ChangeLog +++ b/winsup/w32api/ChangeLog @@ -1,3 +1,8 @@ +2010-08-26 Chris Sutcliffe <ir0nh34d@users.sourceforge.net> + + * Makefile.in: Update naming convention and compression format (lzma), + leaving existing naming convention and compression format as is for Cygwin. + 2010-08-25 Chris Sutcliffe <ir0nh34d@users.sourceforge.net> * include/oleacc.h (STATE_SYSTEM_HASPOPUP, STATE_SYSTEM_NORMAL, diff --git a/winsup/w32api/Makefile.in b/winsup/w32api/Makefile.in index b216162..b0e8772 100644 --- a/winsup/w32api/Makefile.in +++ b/winsup/w32api/Makefile.in @@ -45,8 +45,8 @@ AR = @AR@ LD = @LD@ TAR = tar -TARFLAGS = z -TARFILEEXT = .tar.gz +TARFLAGS = --lzma - +TARFILEEXT = .tar.lzma FLAGS_TO_PASS = \ AS="$(AS)" \ @@ -98,7 +98,7 @@ else ifneq (,$(findstring cygwin, $(target_alias))) distdir=$(PACKAGE)-$(VERSION)-$(CYGRELEASE) else - distdir=$(PACKAGE)-$(VERSION)-$(host_os) + distdir=$(PACKAGE)-$(VERSION)-$(CYGRELEASE)-$(host_os) endif endif |