Merge pull request #36 from ids1024/symlink

Use symlinks
This commit is contained in:
Jeremy Soller 2017-07-06 18:56:38 -06:00 committed by GitHub
commit 5f5092271b
2 changed files with 2 additions and 4 deletions

View File

@ -44,7 +44,6 @@ function recipe_clean {
function recipe_stage {
dest="$(realpath $1)"
make DESTDIR="$dest" install
echo -e '#!/bin/ion\ndash @args[1..]' > "$1/bin/sh"
chmod a+x "$1/bin/sh"
ln -s "dash" "$1/bin/sh"
skip=1
}

View File

@ -53,7 +53,6 @@ function recipe_stage {
dest="$(realpath $1)"
make DESTDIR="$dest" install-gcc install-target-libgcc
find "$dest"/{bin,libexec} -exec x86_64-elf-redox-strip {} ';' 2> /dev/null
echo -e '#!/bin/ion\ngcc @args[1..]' > "$1/bin/cc"
chmod a+x "$1/bin/cc"
ln -s "gcc" "$1/bin/cc"
skip=1
}