Skip to content

Commit

Permalink
Fixed issue with moving files from usr/bin to bin
Browse files Browse the repository at this point in the history
  • Loading branch information
ptitSeb committed Sep 8, 2023
1 parent b15dc57 commit 5fa41b5
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -82,4 +82,7 @@ cmake --build . --config MinSizeRel
DESTDIR=destdir cmake --install . --strip --config MinSizeRel

# move usr/bin/* to bin/ or llvm-config will be broken
if [ ! -d destdir/bin ];then
mkdir destdir/bin
fi
mv destdir/usr/bin/* destdir/bin/

0 comments on commit 5fa41b5

Please sign in to comment.