diff options
author | Bryan Drewery <bdrewery@FreeBSD.org> | 2015-11-25 19:10:28 +0000 |
---|---|---|
committer | Bryan Drewery <bdrewery@FreeBSD.org> | 2015-11-25 19:10:28 +0000 |
commit | 7b3ea376a27ada7a61eb0c3102f13040fb8c16cb (patch) | |
tree | 08f8b8cb9695c3838114009d59775d79359e66ef /targets/pseudo/stage/Makefile | |
parent | a9bf7044742bffcdb6acf68904059d7e41cbf6ad (diff) | |
download | src-7b3ea376a27ada7a61eb0c3102f13040fb8c16cb.tar.gz src-7b3ea376a27ada7a61eb0c3102f13040fb8c16cb.zip |
META MODE: Prefer INSTALL=tools/install.sh to lessen the need for xinstall.host.
This both avoids some dependencies on xinstall.host and allows
bootstrapping on older releases to work due to lack of at least 'install -l'
support.
Sponsored by: EMC / Isilon Storage Division
Notes
Notes:
svn path=/head/; revision=291307
Diffstat (limited to 'targets/pseudo/stage/Makefile')
-rw-r--r-- | targets/pseudo/stage/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/targets/pseudo/stage/Makefile b/targets/pseudo/stage/Makefile index e1041a2c2742..daa352d9257a 100644 --- a/targets/pseudo/stage/Makefile +++ b/targets/pseudo/stage/Makefile @@ -8,8 +8,8 @@ all: # we don't need to see it. stage-distrib-dirs: .META mkdir -p ${STAGE_OBJTOP} - ${.MAKE} -C ${SRCTOP}/etc distrib-dirs -DNO_FSCHG -DWITH_TESTS \ - DESTDIR=${STAGE_OBJTOP} > $@.distrib_dirs + INSTALL="sh ${SRCTOP}/tools/install.sh" ${.MAKE} -C ${SRCTOP}/etc \ + distrib-dirs -DNO_FSCHG -DWITH_TESTS DESTDIR=${STAGE_OBJTOP} touch $@ .include <bsd.prog.mk> |