X-Git-Url: https://code.delx.au/gnu-emacs-elpa/blobdiff_plain/a95c2ceb924301749f440d33daf5de27eb47a195..e52579348d8529b0cff08a1f0a676cb0cc6f61c3:/Makefile diff --git a/Makefile b/Makefile index fada44430..015f3acba 100644 --- a/Makefile +++ b/Makefile @@ -4,13 +4,13 @@ EMACS=emacs package: *.el @ver=`grep -o "Version: .*" company.el | cut -c 10-`; \ - tar cjvf company-$$ver.tar.bz2 --mode 644 `git ls-files '*.el' | xargs` + tar cjvf company-$$ver.tar.bz2 --mode 644 $$(find . -name \*.el) elpa: *.el @version=`grep -o "Version: .*" company.el | cut -c 10-`; \ dir=company-$$version; \ mkdir -p "$$dir"; \ - cp `git ls-files '*.el' | xargs` company-$$version; \ + cp $$(find . -name \*.el) company-$$version; \ echo "(define-package \"company\" \"$$version\" \ \"Modular in-buffer completion framework\")" \ > "$$dir"/company-pkg.el; \