File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -18,19 +18,19 @@ platform=$(uname)
1818rm -f " ${LIBV8_MONOLITH} "
1919case " ${platform} " in
2020 " SunOS" )
21- /usr/xpg4/bin/find . -path " ./v8*/**/*.o" -or -path " ./icu*/**/*.o" | sort | uniq | while read -r obj; do
21+ /usr/xpg4/bin/find . -path " ./torque_*/**/*.o " -or -path " ./ v8*/**/*.o" -or -path " ./icu*/**/*.o" | sort | uniq | while read -r obj; do
2222 ar cqS " ${LIBV8_MONOLITH} " " ${obj} "
2323 done
2424 ranlib " ${LIBV8_MONOLITH} "
2525 ;;
2626 " Darwin" )
27- /usr/bin/find . -path " ./v8*/**/*.o" -or -path " ./icu*/**/*.o" | sort | uniq | while read -r obj; do
27+ /usr/bin/find . -path " ./torque_*/**/*.o " -or -path " ./ v8*/**/*.o" -or -path " ./icu*/**/*.o" | sort | uniq | while read -r obj; do
2828 /usr/bin/ar -cqS " ${LIBV8_MONOLITH} " " ${obj} "
2929 done
3030 /usr/bin/ranlib " ${LIBV8_MONOLITH} "
3131 ;;
3232 " Linux" )
33- find . -path " ./v8*/**/*.o" -or -path " ./icu*/**/*.o" | sort | uniq | while read -r obj; do
33+ find . -path " ./torque_*/**/*.o " -or -path " ./ v8*/**/*.o" -or -path " ./icu*/**/*.o" | sort | uniq | while read -r obj; do
3434 ar -cqS " ${LIBV8_MONOLITH} " " ${obj} "
3535 done
3636 ranlib " ${LIBV8_MONOLITH} "
You can’t perform that action at this time.
0 commit comments