branch: master
commit a70f9ac252dbb56d4114a802c71d8bfa614a149b
Author: Ian D <[email protected]>
Commit: Ian D <[email protected]>
Fixed bug in Makefile
---
Makefile | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/Makefile b/Makefile
index 55498c7..74e079a 100644
--- a/Makefile
+++ b/Makefile
@@ -15,7 +15,7 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
-EMACS=emacs --ednach
+EMACS=emacs --batch
ALLSRC=org-edna.el
SOURCE=$(ALLSRC)
TARGET=$(patsubst %.el,%.elc,$(SOURCE))
@@ -27,7 +27,7 @@ compile: $(TARGET)
%.elc: %.el
@$(EMACS) \
-L "." \
- -f ednach-byte-compile $<
+ -f batch-byte-compile $<
autoloads: org-edna-autoloads.el