Skip to content

Commit b8200be

Browse files
committed
mangle-hw-libs: No realpath command on builder
1 parent 0e511a6 commit b8200be

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

installer/mangle-hw-libs.sh

+3-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,9 @@ __EOM__
1818
[ -z $1 ] && usage && exit -1
1919

2020
# We take one argument, the path in which to look for target libraries
21-
hw_lib_dir=$(realpath "$1")
21+
if [ -d "$1" ]; then
22+
hw_lib_dir="$1"
23+
fi
2224

2325
# Count files processed
2426
((processed=0))

0 commit comments

Comments
 (0)