From 4704bf6ed6e5ba43fdedae8e16e89ed547750e90 Mon Sep 17 00:00:00 2001 From: Sameer Rahmani Date: Sat, 8 Apr 2017 06:03:18 +0430 Subject: [PATCH] Minor bug fixed in installation Makefile --- .gitignore | 3 ++- Makefile | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index f48bed8..734d1fe 100644 --- a/.gitignore +++ b/.gitignore @@ -7,5 +7,6 @@ build.log packages/ lib/magic-buffer.el assets/ -./fg42 +./fg42^ +fg42 fonts/ \ No newline at end of file diff --git a/Makefile b/Makefile index 32f0f7b..47f6b58 100644 --- a/Makefile +++ b/Makefile @@ -7,7 +7,8 @@ install: @echo "Creating the link..." @echo "#! /bin/sh" > ./fg42 @echo "export FG42_HOME=${HOME}/src/FG42" >> ./fg42 - @echo 'emacs --name FG42 --no-site-file --no-site-lisp --no-splash --title FG42 -l $FG42_HOME/fg42-config.el "$$@"' >> ./fg42 + @echo 'emacs --name FG42 --no-site-file --no-site-lisp --no-splash --title FG42 -l $$FG42_HOME/fg42-config.el "$$@"' >> ./fg42 + @chmod +x ./fg42 @sudo rm /usr/local/bin/fg42 @sudo ln -s `pwd`/fg42 /usr/local/bin/fg42 @echo "Copying share files..."