From 8ddf062f43c8463e2f292c2207a60af4bdcc76ee Mon Sep 17 00:00:00 2001 From: mid-kid Date: Thu, 10 Dec 2015 14:09:27 +0000 Subject: [PATCH] Remove slash in dir_sysroot, to prevent programs thinking it's a network path --- astronaut/astronaut | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/astronaut/astronaut b/astronaut/astronaut index 836df3e..bcde6fb 100755 --- a/astronaut/astronaut +++ b/astronaut/astronaut @@ -4,7 +4,7 @@ dir_build="$PWD/build" # Temporary directory to build packages dir_source="$PWD/source" # Directory where the package sources will be placed dir_install="$PWD/install" # Directory where the package will be installed -dir_sysroot="/" # The root dir (Used for dirs like etc and var) +dir_sysroot="" # The root dir (Used for dirs like etc and var) dir_prefix="$dir_sysroot/usr" # Prefix directory cmd_download="curl -# -L -o {dst} {src}" # Command to execute to download files cmd_extract="tar -x -C {dst} -f {src}" # Command to execute to extract files