Ticket #12153: macports-gmake.patch
File macports-gmake.patch, 1.5 KB (added by afb@…, 17 years ago) |
---|
-
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 gmake_path "@GMAKE@" 39 40 variable tar_command "@TAR_CMD@" 40 41 variable have_launchd "@HAVE_LAUNCHD@" 41 42 variable launchctl_path "@LAUNCHCTL@" -
base/src/port1.0/portbuild.tcl
65 65 if {[option os.platform] == "darwin"} { 66 66 return gnumake 67 67 } else { 68 return gmake68 return ${portutil::autoconf::gmake_path} 69 69 } 70 70 } 71 71 pbx { -
base/configure.ac
23 23 AC_PATH_PROG(XCODEBUILD, [xcodebuild], []) 24 24 AC_PATH_PROG(BZIP2, [bzip2], []) 25 25 AC_PATH_PROG(XAR, [xar], []) 26 AC_PATH_PROG(GMAKE, [gmake], []) 26 27 AC_PATH_PROG(OPEN, [open], []) 27 28 28 29 # Define some precious variables allowing user to override PATH for some programs … … 34 35 AC_ARG_VAR(GNUTAR, [path to gnutar command]) 35 36 AC_ARG_VAR(BZIP2, [path to bzip2 command]) 36 37 AC_ARG_VAR(XAR, [path to xar command]) 38 AC_ARG_VAR(GMAKE, [path to gmake command]) 37 39 AC_ARG_VAR(OPEN, [path to open command]) 38 40 39 41 MP_TAR_NO_SAME_OWNER