Skip to content

Commit 557f34c

Browse files
committed
Fixed tar on Mac OS X.
In a better way than 4adeb0c.
1 parent 5eb72ab commit 557f34c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
CASK?=cask
2323
EMACS?=emacs
24-
TAR?=bsdtar
24+
TAR?=COPYFILE_DISABLE=1 bsdtar
2525
PANDOC?=pandoc --atx-headers
2626

2727
VERSION?=$(shell $(CASK) version)
@@ -46,7 +46,7 @@ $(ARCHIVE_NAME)-pkg.el: $(ARCHIVE_NAME).el
4646

4747
# create a tar ball in package.el format for uploading to http://marmalade-repo.org
4848
$(PACKAGE_NAME).tar: README $(ARCHIVE_NAME).el $(ARCHIVE_NAME)-pkg.el $(ARCHIVE_NAME).info dir drupal/*.el drupal-tests.el drush-make-mode.el
49-
COPYFILE_DISABLE=1 $(TAR) -c -s "@^@$(PACKAGE_NAME)/@" -f $(PACKAGE_NAME).tar $^
49+
$(TAR) -c -s "@^@$(PACKAGE_NAME)/@" -f $(PACKAGE_NAME).tar $^
5050

5151
install: $(PACKAGE_NAME).tar
5252
$(EMACS) --batch -l package -f package-initialize --eval "(package-install-file \"$(PWD)/$(PACKAGE_NAME).tar\")"

0 commit comments

Comments
 (0)