Browse Source

Revert "Remove the needless, error-causing realpaths"

This reverts commit c071fc4cc4.
master
mid-kid 9 years ago
parent
commit
c40bea8426
  1. 10
      astronaut/astronaut

10
astronaut/astronaut

@ -54,19 +54,19 @@ while getopts "h?s:b:i:p:r:IcCdvo:" opt; do
exit 0 exit 0
;; ;;
s) s)
dir_source="$OPTARG" dir_source="$(realpath "$OPTARG")"
;; ;;
b) b)
dir_build="$OPTARG" dir_build="$(realpath "$OPTARG")"
;; ;;
i) i)
dir_install="$OPTARG" dir_install="$(realpath "$OPTARG")"
;; ;;
p) p)
dir_prefix="$OPTARG" dir_prefix="$(realpath "$OPTARG")"
;; ;;
r) r)
dir_sysroot="$OPTARG" dir_sysroot="$(realpath "$OPTARG")"
;; ;;
I) I)
_nuke_dir_install=true _nuke_dir_install=true

Loading…
Cancel
Save