diff options
| author | Lex Neva <github.com@lexneva.name> | 2018-08-01 17:24:29 -0400 |
|---|---|---|
| committer | Lex Neva <github.com@lexneva.name> | 2018-08-01 17:24:29 -0400 |
| commit | 666e1f08c3d442a85a20d8f057a0cd0eaee8be91 (patch) | |
| tree | 781d65387442702e5f9e9871fe9818946e5bca15 /Makefile | |
| parent | f674ccd4e9029a26f20efcd135356549a16c3c1c (diff) | |
use more friendly OS name 'osx' for tarball file name
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -2,7 +2,7 @@ EXTENSIONS:=inkstitch # This gets the branch name or the name of the tag VERSION:=$(TRAVIS_BRANCH) -OS:=$(shell uname) +OS:=$(TRAVIS_OS_NAME) ARCH:=$(shell uname -m) dist: distclean locales @@ -17,7 +17,7 @@ dist: distclean locales if [ "$$BUILD" = "windows" ]; then \ cd dist; zip -r ../inkstitch-$(VERSION)-win32.zip *; \ else \ - cd dist; tar zcf ../inkstitch-$(VERSION)-$(OS)-$(ARCH).tar.gz *; \ + cd dist; tar zcf ../inkstitch-$(VERSION)-$(OS)-$(ARCH).tar.gz *; \ fi distclean: |
