diff options
author | Zack Middleton <zturtleman@gmail.com> | 2013-08-03 16:37:28 -0500 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2014-06-17 17:43:33 +0100 |
commit | 671cbc03f1178575888bd043010fb56caa3d3a95 (patch) | |
tree | 5f0d726b04bea6fe033e6fa58b7c0f10670f73f2 | |
parent | d55f014928eab3a1a024ec27cccade481f175c5b (diff) |
Fix creating symlinks in make-macosx-app.sh
Create symlink if arch name is found anywhere in info printed by file command, not only if arch name is the last word.
-rwxr-xr-x | make-macosx-app.sh | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/make-macosx-app.sh b/make-macosx-app.sh index 4ed57d61..7768964a 100755 --- a/make-macosx-app.sh +++ b/make-macosx-app.sh @@ -75,11 +75,11 @@ function symlinkArch() pushd "${DSTPATH}" > /dev/null - IS32=`file "${SRCFILE}.${EXT}" | grep "i386" | awk '{print $NF}'` - IS64=`file "${SRCFILE}.${EXT}" | grep "x86_64" | awk '{print $NF}'` - ISPPC=`file "${SRCFILE}.${EXT}" | grep "ppc" | awk '{print $NF}'` + IS32=`file "${SRCFILE}.${EXT}" | grep "i386"` + IS64=`file "${SRCFILE}.${EXT}" | grep "x86_64"` + ISPPC=`file "${SRCFILE}.${EXT}" | grep "ppc"` - if [ "${IS32}" == "i386" ]; then + if [ "${IS32}" != "" ]; then if [ ! -L "${DSTFILE}x86.${EXT}" ]; then ln -s "${SRCFILE}.${EXT}" "${DSTFILE}x86.${EXT}" fi @@ -87,7 +87,7 @@ function symlinkArch() rm "${DSTFILE}x86.${EXT}" fi - if [ "${IS64}" == "x86_64" ]; then + if [ "${IS64}" != "" ]; then if [ ! -L "${DSTFILE}x86_64.${EXT}" ]; then ln -s "${SRCFILE}.${EXT}" "${DSTFILE}x86_64.${EXT}" fi @@ -95,7 +95,7 @@ function symlinkArch() rm "${DSTFILE}x86_64.${EXT}" fi - if [ "${ISPPC}" == "ppc" ]; then + if [ "${ISPPC}" != "" ]; then if [ ! -L "${DSTFILE}ppc.${EXT}" ]; then ln -s "${SRCFILE}.${EXT}" "${DSTFILE}ppc.${EXT}" fi |