1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-18 19:49:40 +00:00

- Fix DESTDIR support.

It has been broken since r176977 in head in 2008.

PR:		172547
Submitted by:	Rob <pr@somerandom.net>
With hat:	portmgr
This commit is contained in:
Bryan Drewery 2014-09-08 20:44:21 +00:00
parent 3c8222ab11
commit b323faddb9
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=367700

View File

@ -140,7 +140,7 @@ do-chroot:
_tp=$${_entry#*:}; \
_host_path=`${REALPATH} $${_tp%:*}`; \
_dest_path=$${_entry##*:}; \
_full_dest_path=`${REALPATH} $${_destdir}/$${_dest_path}`; \
_full_dest_path=`${REALPATH} -q $${_destdir}/$${_dest_path} || :`; \
_entry_was_created=0; \
_entry_should_mount=0; \
${DEBUG_MSG} "$${_mount_var}:$${_host_path}:$${_full_dest_path}"; \