[PATCH] D115046: [test-release.sh] Do not run chrpath on AIX.
Amy Kwan via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Fri Dec 3 13:39:47 PST 2021
This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Closed by commit rG97eb3bb80ff9: [test-release.sh] Do not run chrpath on AIX. (authored by amyk).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D115046/new/
https://reviews.llvm.org/D115046
Files:
llvm/utils/release/test-release.sh
Index: llvm/utils/release/test-release.sh
===================================================================
--- llvm/utils/release/test-release.sh
+++ llvm/utils/release/test-release.sh
@@ -307,7 +307,7 @@
fi
}
-if [ "$System" != "Darwin" -a "$System" != "SunOS" ]; then
+if [ "$System" != "Darwin" ] && [ "$System" != "SunOS" ] && [ "$System" != "AIX" ]; then
check_program_exists 'chrpath'
fi
@@ -457,7 +457,7 @@
# Clean RPATH. Libtool adds the build directory to the search path, which is
# not necessary --- and even harmful --- for the binary packages we release.
function clean_RPATH() {
- if [ "$System" = "Darwin" -o "$System" = "SunOS" ]; then
+ if [ "$System" = "Darwin" ] || [ "$System" = "SunOS" ] || [ "$System" = "AIX" ]; then
return
fi
local InstallPath="$1"
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D115046.391725.patch
Type: text/x-patch
Size: 804 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20211203/1c9eb9fe/attachment.bin>
More information about the llvm-commits
mailing list