this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Made the mig.sh script more portable

+3 -2
+3 -2
bootstrap_cmds-91/migcom.tproj/mig.sh
··· 1 1 #!/bin/sh 2 2 # 3 3 # Copyright (c) 1999-2008 Apple Inc. All rights reserved. 4 + # Modified by Lubos Dolezel for Darling 4 5 # 5 6 # @APPLE_LICENSE_HEADER_START@ 6 7 # ··· 88 89 files= 89 90 arch=`/usr/bin/arch` 90 91 91 - WORKTMP=`/usr/bin/mktemp -d "${TMPDIR:-/tmp}/mig.XXXXXX"` 92 + WORKTMP=`mktemp -d "${TMPDIR:-/tmp}/mig.XXXXXX"` 92 93 if [ $? -ne 0 ]; then 93 94 echo "Failure creating temporary work directory: ${WORKTMP}" 94 95 echo "Exiting..." ··· 206 207 rm -f "${temp}.c" 207 208 done 208 209 209 - /bin/rmdir "${WORKTMP}" 210 + rmdir "${WORKTMP}" 210 211 exit 0 211 212