Ticket #12153: macports-make.patch
File macports-make.patch, 1.9 KB (added by afb@…, 17 years ago) |
---|
-
base/configure.ac
24 24 AC_PATH_PROG(XCODEBUILD, [xcodebuild], []) 25 25 AC_PATH_PROG(BZIP2, [bzip2], []) 26 26 AC_PATH_PROG(XAR, [xar], []) 27 AC_PATH_PROG(PMAKE, [pmake], []) 28 AC_PATH_PROG(GMAKE, [gmake], []) 27 29 AC_PATH_PROG(OPEN, [open], []) 28 30 29 31 # Define some precious variables allowing user to override PATH for some programs … … 35 37 AC_ARG_VAR(GNUTAR, [path to gnutar command]) 36 38 AC_ARG_VAR(BZIP2, [path to bzip2 command]) 37 39 AC_ARG_VAR(XAR, [path to xar command]) 40 AC_ARG_VAR(PMAKE, [path to pmake command]) 41 AC_ARG_VAR(GMAKE, [path to gmake command]) 38 42 AC_ARG_VAR(OPEN, [path to open command]) 39 43 40 44 MP_TAR_NO_SAME_OWNER -
base/src/port1.0/port_autoconf.tcl.in
36 36 variable rsync_path "@RSYNC@" 37 37 variable mtree_path "@MTREE@" 38 38 variable xar_path "@XAR@" 39 variable pmake_path "@PMAKE@" 40 variable gmake_path "@GMAKE@" 39 41 variable tar_command "@TAR_CMD@" 40 42 variable have_launchd "@HAVE_LAUNCHD@" 41 43 variable launchctl_path "@LAUNCHCTL@" -
base/src/port1.0/portbuild.tcl
57 57 bsd { 58 58 if {[option os.platform] == "darwin"} { 59 59 return bsdmake 60 } elseif {[option os.platform] == "freebsd"} { 61 return make 60 62 } else { 61 return make63 return ${portutil::autoconf::pmake_path} 62 64 } 63 65 } 64 66 gnu { 65 67 if {[option os.platform] == "darwin"} { 66 68 return gnumake 69 } elseif {[option os.platform] == "linux"} { 70 return make 67 71 } else { 68 return gmake72 return ${portutil::autoconf::gmake_path} 69 73 } 70 74 } 71 75 pbx {