nad0003 OS X installer: fix makefile target changed for 3.x 2.x "make install" is equivalent to 3.x "make fullinstall" Update Mac/BuildScript/build-installer.py accordingly. This prevents spurious warning messages in the installer build. APPLIES py3k, 3.0 diff -r 71bc02011d34 Mac/BuildScript/build-installer.py --- Mac/BuildScript/build-installer.py Sat Feb 14 21:18:18 2009 -0800 +++ Mac/BuildScript/build-installer.py Sat Feb 14 21:21:51 2009 -0800 @@ -674,8 +674,8 @@ print "Running make" runCommand("make") - print "Running make frameworkinstall" - runCommand("make frameworkinstall DESTDIR=%s"%( + print "Running make fullinstall" + runCommand("make fullinstall DESTDIR=%s"%( shellQuote(rootDir))) print "Running make frameworkinstallextras"