diff options
author | Andrew Turner <andrew@FreeBSD.org> | 2013-02-04 09:34:25 +0000 |
---|---|---|
committer | Andrew Turner <andrew@FreeBSD.org> | 2013-02-04 09:34:25 +0000 |
commit | 1dc56acdf0ec25cce6c27c73c24d1b9d2d92193f (patch) | |
tree | dad19107580caedb8761950bdb4e5a20a944f86e | |
parent | 93c7e8971299e398c55866ed816f39693e01a5b4 (diff) | |
download | src-1dc56acdf0ec25cce6c27c73c24d1b9d2d92193f.tar.gz src-1dc56acdf0ec25cce6c27c73c24d1b9d2d92193f.zip |
Fix xdev by using the install shell script as it knows about the -l
argument thile the local version install may not.
Notes
Notes:
svn path=/head/; revision=246315
-rw-r--r-- | Makefile.inc1 | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile.inc1 b/Makefile.inc1 index 34369a851e71..771f852c94db 100644 --- a/Makefile.inc1 +++ b/Makefile.inc1 @@ -1733,7 +1733,8 @@ NOFUN=-DNO_FSCHG -DWITHOUT_HTML -DWITHOUT_INFO -DNO_LINT \ XDDIR=${XDEV_ARCH}-freebsd XDTP=/usr/${XDDIR} -CDBENV=MAKEOBJDIRPREFIX=${MAKEOBJDIRPREFIX}/${XDDIR} +CDBENV=MAKEOBJDIRPREFIX=${MAKEOBJDIRPREFIX}/${XDDIR} \ + INSTALL="sh ${.CURDIR}/tools/install.sh" CDENV= ${CDBENV} \ _SHLIBDIRPREFIX=${XDTP} \ TOOLS_PREFIX=${XDTP} |