From c40bea842640077b16bd71851c41359357d660ca Mon Sep 17 00:00:00 2001 From: mid-kid Date: Tue, 26 Jan 2016 19:45:02 +0100 Subject: [PATCH] Revert "Remove the needless, error-causing realpaths" This reverts commit c071fc4cc43017598bdb9a522ba8fbee998bb5b5. --- astronaut/astronaut | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/astronaut/astronaut b/astronaut/astronaut index 200f96b..2aca272 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="$OPTARG" + dir_source="$(realpath "$OPTARG")" ;; b) - dir_build="$OPTARG" + dir_build="$(realpath "$OPTARG")" ;; i) - dir_install="$OPTARG" + dir_install="$(realpath "$OPTARG")" ;; p) - dir_prefix="$OPTARG" + dir_prefix="$(realpath "$OPTARG")" ;; r) - dir_sysroot="$OPTARG" + dir_sysroot="$(realpath "$OPTARG")" ;; I) _nuke_dir_install=true