From c9d67bfd94525a0048835da47c8e3736fc04259d Mon Sep 17 00:00:00 2001 From: =?utf8?q?Ji=C5=99=C3=AD=20Z=C3=A1rev=C3=BAcky?= Date: Mon, 26 Feb 2018 17:02:55 +0100 Subject: [PATCH] Avoid using `realpath`. --- hsct.sh | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/hsct.sh b/hsct.sh index e69389a..fa2d927 100755 --- a/hsct.sh +++ b/hsct.sh @@ -387,7 +387,7 @@ hsct_init() { hsct_info "Creating facade toolchain." mkdir -p facade - facade_path=`realpath facade` + facade_path="$PWD/facade" ( . helenos/config.rc @@ -444,8 +444,7 @@ hsct_print_vars() { echo "export HSCT_CONFIGURE_VARS='$cvars'" echo "export HSCT_CONFIGURE_ARGS='--host=$target $cvars'" - facade_path=`realpath facade` - echo "export PATH='$facade_path:$HELENOS_CROSS_PATH:$PATH'" + echo "export PATH='$PWD/facade:$HELENOS_CROSS_PATH:$PATH'" } hsct_pkg() { -- 2.11.4.GIT