Let helm work without make on Windows

It's better to use the officially support build procedure, which is to
call make, but on Windows where we likely don't have make try to fake it
instead.

* recipes/helm.rcp (helm): :build/windows-nt just create helm-autoload.el
This commit is contained in:
Noam Postavsky 2014-10-22 22:28:31 -04:00
parent 5b7359be87
commit 19adad358f

View File

@ -2,4 +2,7 @@
:description "Emacs incremental and narrowing framework"
:type github
:pkgname "emacs-helm/helm"
:build ("make"))
:build ("make")
;; Windows probably doesn't have make available so we fake it.
:build/windows-nt (with-temp-file "helm-autoload.el"
nil))