emacs/build

- adapted to new build system
- reviewed
This commit is contained in:
2015-09-18 18:31:10 +02:00
parent 179e283949
commit b215524883
3 changed files with 32 additions and 41 deletions
+10
View File
@@ -0,0 +1,10 @@
#!/bin/bash
declare -r OS=$(uname -s)
if [[ "${OS}" == "Darwin" ]]; then
"${EMACS_DIR}/Emacs.app/Contents/MacOS/bin/emacsclient" -c "$@"
else
"${EMACS_DIR}/bin/emacsclient" -c "$@" &
fi