branch: elpa/swift-mode
commit a5e1acf5826ccd489617f9255da0aab7e5e920ee
Merge: 7fc03bf e9648b1
Author: Arthur Evstifeev <[email protected]>
Commit: Arthur Evstifeev <[email protected]>
Merge pull request #122 from N4tr0n/make-install-fix-issue120
Use .el for file extension in distributed package.
---
Makefile | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/Makefile b/Makefile
index 7769b1b..c0c02fb 100644
--- a/Makefile
+++ b/Makefile
@@ -10,7 +10,7 @@ USER_ELPA_D = $(USER_EMACS_D)/elpa
SRCS = $(filter-out %-pkg.el, $(wildcard *.el))
TESTS = $(filter-out %-pkg.el, $(wildcard test/*.el))
-TAR = $(DIST)/swift-mode-$(VERSION).tar
+EL = $(DIST)/swift-mode-$(VERSION).el
.PHONY: all
all : deps $(DIST)
@@ -30,7 +30,7 @@ check : deps
.PHONY: install
install : $(DIST) $(USER_ELPA_D)
$(EMACS) $(EMACSFLAGS) -l package \
- -f package-initialize --eval '(package-install-file "$(TAR)")'
+ -f package-initialize --eval '(package-install-file "$(EL)")'
.PHONY: uninstall
uninstall :