diff options
author | Chris Sutcliffe <ir0nh34d@users.sourceforge.net> | 2008-09-24 00:59:03 +0000 |
---|---|---|
committer | Chris Sutcliffe <ir0nh34d@users.sourceforge.net> | 2008-09-24 00:59:03 +0000 |
commit | 85f457567bc4eb648bf8c7b18a0d03785c9648e7 (patch) | |
tree | f064187a23784ac678bd09e97b6303dc54013a20 | |
parent | 4fb7bbb9858648db78283389b39f48e4cc8c8c30 (diff) | |
download | cygnal-85f457567bc4eb648bf8c7b18a0d03785c9648e7.tar.gz cygnal-85f457567bc4eb648bf8c7b18a0d03785c9648e7.tar.bz2 cygnal-85f457567bc4eb648bf8c7b18a0d03785c9648e7.zip |
2008-09-23 Chris Sutcliffe <ir0nh34d@users.sf.net>
* Makefile.in: Don't include host_os as part of snapshot filename.
-rw-r--r-- | winsup/mingw/ChangeLog | 4 | ||||
-rw-r--r-- | winsup/mingw/Makefile.in | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/winsup/mingw/ChangeLog b/winsup/mingw/ChangeLog index 1037598ea..f8f668c22 100644 --- a/winsup/mingw/ChangeLog +++ b/winsup/mingw/ChangeLog @@ -1,3 +1,7 @@ +2008-09-23 Chris Sutcliffe <ir0nh34d@users.sf.net> + + * Makefile.in: Don't include host_os as part of snapshot filename. + 2008-09-19 Keith Marshall <keithmarshall@users.sourceforge.net> Fix MinGW-Bug [2119504]. diff --git a/winsup/mingw/Makefile.in b/winsup/mingw/Makefile.in index d8ba90603..1a46d59f3 100644 --- a/winsup/mingw/Makefile.in +++ b/winsup/mingw/Makefile.in @@ -352,7 +352,7 @@ distclean: clean -rm -f Makefile ifdef SNAPDATE - distdir=$(PACKAGE)-$(VERSION)-$(SNAPDATE)-$(host_os) + distdir=$(PACKAGE)-$(VERSION)-$(SNAPDATE) else ifneq (,$(findstring cygwin, $(target_alias))) distdir=$(PACKAGE)-$(VERSION)-$(CYGRELEASE) |