diff options
author | Richard Lowe <richlowe@richlowe.net> | 2018-01-28 15:27:38 +0000 |
---|---|---|
committer | Richard Lowe <richlowe@richlowe.net> | 2018-01-28 15:27:38 +0000 |
commit | 6c9c1c0d3911e7534e0028fb6e2a09aa4609730d (patch) | |
tree | 328adcf1ecde6ec71e665e148351a7ff5318702e | |
parent | f627793a66375709ebd33b4f64774dfee1db48fb (diff) | |
download | illumos-joyent-6c9c1c0d3911e7534e0028fb6e2a09aa4609730d.tar.gz |
backout: 8571 Makefile.master should not trust $PATH (insufficient testing, broke bootstrap)
-rw-r--r-- | usr/src/Makefile.master | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/usr/src/Makefile.master b/usr/src/Makefile.master index 63f087c8e6..67d57a47c8 100644 --- a/usr/src/Makefile.master +++ b/usr/src/Makefile.master @@ -134,16 +134,9 @@ ELFEXTRACT= $(ONBLD_TOOLS)/bin/$(MACH)/elfextract MBH_PATCH= $(ONBLD_TOOLS)/bin/$(MACH)/mbh_patch BTXLD= $(ONBLD_TOOLS)/bin/$(MACH)/btxld VTFONTCVT= $(ONBLD_TOOLS)/bin/$(MACH)/vtfontcvt -# echo(1) and true(1) are specified without absolute paths, so that the shell -# spawned by make(1) may use the built-in versions. This is minimally -# problematic, as the shell spawned by make(1) is known and under control, the -# only risk being if the shell falls back to $PATH. -# -# We specifically want an echo(1) that does interpolation of escape sequences, -# which ksh93, /bin/sh, and bash will all provide. ECHO= echo +INS= install TRUE= true -INS= $(ONBLD_TOOLS)/bin/$(MACH)/install SYMLINK= /usr/bin/ln -s LN= /usr/bin/ln CHMOD= /usr/bin/chmod |