We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5799417 commit 20db025Copy full SHA for 20db025
build.sh
@@ -80,8 +80,11 @@ cmake \
80
cmake --build . --config MinSizeRel
81
DESTDIR=destdir cmake --install . --strip --config MinSizeRel
82
83
-# move usr/bin/* to bin/ or llvm-config will be broken
84
if [ ! -d destdir/bin ];then
85
mkdir destdir/bin
86
fi
87
-mv destdir/usr/bin/* destdir/bin/
+
+if [ -d destdir/usr/bin ];then
88
+ # move usr/bin/* to bin/ or llvm-config will be broken
89
+ mv destdir/usr/bin/* destdir/bin/
90
+fi
0 commit comments