Print this page
8571 Makefile.master should not trust $PATH


 117 
 118 # define runtime JAVA_HOME, primarily for cmd/pools/poold
 119 JAVA_HOME=      /usr/java
 120 # define buildtime JAVA_ROOT
 121 JAVA_ROOT=      /usr/java
 122 # define to build with JAVA 8
 123 BLD_JAVA_8=     $(POUND_SIGN)
 124 
 125 GCC_ROOT=       /opt/gcc/4.4.4
 126 GCCLIBDIR=      $(GCC_ROOT)/lib
 127 GCCLIBDIR64=    $(GCC_ROOT)/lib/$(MACH64)
 128 
 129 DOCBOOK_XSL_ROOT=       /usr/share/sgml/docbook/xsl-stylesheets
 130 
 131 RPCGEN=         /usr/bin/rpcgen
 132 STABS=          $(ONBLD_TOOLS)/bin/$(MACH)/stabs
 133 ELFEXTRACT=     $(ONBLD_TOOLS)/bin/$(MACH)/elfextract
 134 MBH_PATCH=      $(ONBLD_TOOLS)/bin/$(MACH)/mbh_patch
 135 BTXLD=          $(ONBLD_TOOLS)/bin/$(MACH)/btxld
 136 VTFONTCVT=      $(ONBLD_TOOLS)/bin/$(MACH)/vtfontcvt







 137 ECHO=           echo
 138 INS=            install
 139 TRUE=           true

 140 SYMLINK=        /usr/bin/ln -s
 141 LN=             /usr/bin/ln
 142 CHMOD=          /usr/bin/chmod
 143 MV=             /usr/bin/mv -f
 144 RM=             /usr/bin/rm -f
 145 CUT=            /usr/bin/cut
 146 NM=             /usr/ccs/bin/nm
 147 DIFF=           /usr/bin/diff
 148 GREP=           /usr/bin/grep
 149 EGREP=          /usr/bin/egrep
 150 ELFWRAP=        /usr/bin/elfwrap
 151 KSH93=          /usr/bin/ksh93
 152 SED=            /usr/bin/sed
 153 AWK=            /usr/bin/nawk
 154 CP=             /usr/bin/cp -f
 155 MCS=            /usr/ccs/bin/mcs
 156 CAT=            /usr/bin/cat
 157 ELFDUMP=        /usr/ccs/bin/elfdump
 158 M4=             /usr/bin/m4
 159 STRIP=          /usr/ccs/bin/strip




 117 
 118 # define runtime JAVA_HOME, primarily for cmd/pools/poold
 119 JAVA_HOME=      /usr/java
 120 # define buildtime JAVA_ROOT
 121 JAVA_ROOT=      /usr/java
 122 # define to build with JAVA 8
 123 BLD_JAVA_8=     $(POUND_SIGN)
 124 
 125 GCC_ROOT=       /opt/gcc/4.4.4
 126 GCCLIBDIR=      $(GCC_ROOT)/lib
 127 GCCLIBDIR64=    $(GCC_ROOT)/lib/$(MACH64)
 128 
 129 DOCBOOK_XSL_ROOT=       /usr/share/sgml/docbook/xsl-stylesheets
 130 
 131 RPCGEN=         /usr/bin/rpcgen
 132 STABS=          $(ONBLD_TOOLS)/bin/$(MACH)/stabs
 133 ELFEXTRACT=     $(ONBLD_TOOLS)/bin/$(MACH)/elfextract
 134 MBH_PATCH=      $(ONBLD_TOOLS)/bin/$(MACH)/mbh_patch
 135 BTXLD=          $(ONBLD_TOOLS)/bin/$(MACH)/btxld
 136 VTFONTCVT=      $(ONBLD_TOOLS)/bin/$(MACH)/vtfontcvt
 137 # echo(1) and true(1) are specified without absolute paths, so that the shell
 138 # spawned by make(1) may use the built-in versions.  This is minimally
 139 # problematic, as the shell spawned by make(1) is known and under control, the
 140 # only risk being if the shell falls back to $PATH.
 141 #
 142 # We specifically want an echo(1) that does interpolation of escape sequences,
 143 # which ksh93, /bin/sh, and bash will all provide.
 144 ECHO=           echo

 145 TRUE=           true
 146 INS=            $(ONBLD_TOOLS)/bin/$(MACH)/install
 147 SYMLINK=        /usr/bin/ln -s
 148 LN=             /usr/bin/ln
 149 CHMOD=          /usr/bin/chmod
 150 MV=             /usr/bin/mv -f
 151 RM=             /usr/bin/rm -f
 152 CUT=            /usr/bin/cut
 153 NM=             /usr/ccs/bin/nm
 154 DIFF=           /usr/bin/diff
 155 GREP=           /usr/bin/grep
 156 EGREP=          /usr/bin/egrep
 157 ELFWRAP=        /usr/bin/elfwrap
 158 KSH93=          /usr/bin/ksh93
 159 SED=            /usr/bin/sed
 160 AWK=            /usr/bin/nawk
 161 CP=             /usr/bin/cp -f
 162 MCS=            /usr/ccs/bin/mcs
 163 CAT=            /usr/bin/cat
 164 ELFDUMP=        /usr/ccs/bin/elfdump
 165 M4=             /usr/bin/m4
 166 STRIP=          /usr/ccs/bin/strip