From c071fc4cc43017598bdb9a522ba8fbee998bb5b5 Mon Sep 17 00:00:00 2001 From: mid-kid Date: Tue, 26 Jan 2016 19:39:15 +0100 Subject: [PATCH] Remove the needless, error-causing realpaths --- astronaut/astronaut | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/astronaut/astronaut b/astronaut/astronaut index 2aca272..200f96b 100755 --- a/astronaut/astronaut +++ b/astronaut/astronaut @@ -54,19 +54,19 @@ while getopts "h?s:b:i:p:r:IcCdvo:" opt; do exit 0 ;; s) - dir_source="$(realpath "$OPTARG")" + dir_source="$OPTARG" ;; b) - dir_build="$(realpath "$OPTARG")" + dir_build="$OPTARG" ;; i) - dir_install="$(realpath "$OPTARG")" + dir_install="$OPTARG" ;; p) - dir_prefix="$(realpath "$OPTARG")" + dir_prefix="$OPTARG" ;; r) - dir_sysroot="$(realpath "$OPTARG")" + dir_sysroot="$OPTARG" ;; I) _nuke_dir_install=true