From c54bd0dc124fad550430c63bfe25b65f94653385 Mon Sep 17 00:00:00 2001 From: Ian Douglas Scott <ian@iandouglasscott.com> Date: Wed, 14 Jun 2017 21:59:48 -0700 Subject: [PATCH] Use /bin/sh and /bin/cc ion scripts --- recipes/dash/recipe.sh | 3 ++- recipes/gcc/recipe.sh | 2 ++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/recipes/dash/recipe.sh b/recipes/dash/recipe.sh index b67e079ae..27c87435f 100644 --- a/recipes/dash/recipe.sh +++ b/recipes/dash/recipe.sh @@ -44,6 +44,7 @@ function recipe_clean { function recipe_stage { dest="$(realpath $1)" make DESTDIR="$dest" install - cp "$1/bin/dash" "$1/bin/sh" # TODO: symlink when Redox supports them + echo -e '#!/bin/ion\ndash @args[1..]' > "$1/bin/sh" + chmod a+x "$1/bin/sh" skip=1 } diff --git a/recipes/gcc/recipe.sh b/recipes/gcc/recipe.sh index ad0f38fdc..a27002e6d 100644 --- a/recipes/gcc/recipe.sh +++ b/recipes/gcc/recipe.sh @@ -53,5 +53,7 @@ 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" skip=1 } -- GitLab