Skip to content
Snippets Groups Projects
Commit 5128b319 authored by rtoy's avatar rtoy
Browse files

cd - doesn't work in /bin/sh, so we need to run that part in a

subshell.
parent 3c78ebec
No related branches found
No related tags found
No related merge requests found
......@@ -92,10 +92,10 @@ find src -name 'CVS' -prune -o -type d -print \
# Link Makefile and Config files
cd $TARGET/lisp
ln -s ../../src/lisp/GNUmakefile ../../src/lisp/Config.$LISP_VARIANT ../../src/lisp/Config.*_common .
ln -s Config.$LISP_VARIANT Config
cd -
(cd $TARGET/lisp
ln -s ../../src/lisp/GNUmakefile ../../src/lisp/Config.$LISP_VARIANT ../../src/lisp/Config.*_common .
ln -s Config.$LISP_VARIANT Config
)
# Create empty initial map file
echo 'Map file for lisp version 0' > $TARGET/lisp/lisp.nm
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment