diff options
author | tron <tron> | 2013-06-01 12:15:54 +0000 |
---|---|---|
committer | tron <tron> | 2013-06-01 12:15:54 +0000 |
commit | 07a5ef521af6960a9564eab6c6dece3b3a37a5a9 (patch) | |
tree | 1f23cc50125ad4646007a058162ef962ab03b20f /bootstrap | |
parent | cbf3cfe79c0b4b844a19faefc8290f3d9b06d93a (diff) | |
download | pkgsrc-07a5ef521af6960a9564eab6c6dece3b3a37a5a9.tar.gz |
Under Mac OS X (Mountain) Lion "packagemaker" is part of the
"PackageMaker" application which resides in "/Applications".
Diffstat (limited to 'bootstrap')
-rwxr-xr-x | bootstrap/bootstrap | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/bootstrap/bootstrap b/bootstrap/bootstrap index 2c7ad140be4..55708eab230 100755 --- a/bootstrap/bootstrap +++ b/bootstrap/bootstrap @@ -1,6 +1,6 @@ #! /bin/sh -# $NetBSD: bootstrap,v 1.192 2013/05/11 23:42:44 ryoon Exp $ +# $NetBSD: bootstrap,v 1.193 2013/06/01 12:15:54 tron Exp $ # # Copyright (c) 2001-2011 Alistair Crooks <agc@NetBSD.org> # All rights reserved. @@ -497,6 +497,9 @@ Darwin) osrev=`uname -r` macosx_version=`echo $osrev | awk -F . '{ print "10."$1-4; }'` case "$macosx_version" in + 10.[7-8]) + packagemaker=/Applications/PackageMaker.app/Contents/MacOS/PackageMaker + ;; 10.[0-4]) packagemaker=/Developer/Tools/packagemaker ;; |