Browse Source

Removing realpaths again

master
mid-kid 9 years ago
parent
commit
cd6ebb89c1
  1. 10
      astronaut/astronaut

10
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

Loading…
Cancel
Save