diff options
author | andrew <andrew@FreeBSD.org> | 2013-02-04 09:34:25 +0000 |
---|---|---|
committer | andrew <andrew@FreeBSD.org> | 2013-02-04 09:34:25 +0000 |
commit | 2765723782c7cf72c05027aa49c520e7ffebb4b7 (patch) | |
tree | dad19107580caedb8761950bdb4e5a20a944f86e | |
parent | 897e2fb50579aef227fdadb07059bf19f3bbf36c (diff) | |
download | FreeBSD-src-2765723782c7cf72c05027aa49c520e7ffebb4b7.zip FreeBSD-src-2765723782c7cf72c05027aa49c520e7ffebb4b7.tar.gz |
Fix xdev by using the install shell script as it knows about the -l
argument thile the local version install may not.
-rw-r--r-- | Makefile.inc1 | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile.inc1 b/Makefile.inc1 index 34369a8..771f852 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} |