chiark
/
gitweb
/
~mdw
/
profile
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
188ebb3
)
setup: OpenBSD make(1) doesn't have `-C'.
author
Mark Wooding
<mdw@distorted.org.uk>
Tue, 6 Dec 2011 12:57:40 +0000
(12:57 +0000)
committer
Mark Wooding
<mdw@distorted.org.uk>
Tue, 6 Dec 2011 12:57:40 +0000
(12:57 +0000)
Change directory the old-fashioned way.
setup
patch
|
blob
|
blame
|
history
diff --git
a/setup
b/setup
index b5fb47d5d57001736d3432787b6a3cd23c828d0c..c90e390f99d0642f8a09e27fc32ad58410913cf9 100755
(executable)
--- a/
setup
+++ b/
setup
@@
-328,7
+328,7
@@
for f in dot-emacs.el Makefile; do
mv $HOME$sub/lib/emacs/$f.new $HOME$sub/lib/emacs/$f
done
$echon " compiling$echoc"
-make >/dev/null 2>&1 -C $HOME$sub/lib/emacs EMACS=$emacs
+{ cd $HOME$sub/lib/emacs && make EMACS=$emacs; } >/dev/null 2>&1
echo " done."
###----- That's all, folks --------------------------------------------------