summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexey Dokuchaev <danfe@FreeBSD.org>2017-04-29 17:55:55 +0000
committerAlexey Dokuchaev <danfe@FreeBSD.org>2017-04-29 17:55:55 +0000
commitf69dbf38cf706fc4ea9114343fd8c6608a6b3efc (patch)
tree26ddae9f4a2cb2c97cffc3317352831d1a4a9978
parentnet/py-libcloud: update to 2.0.0 (diff)
Do not separate ${DESTDIR}${PREFIX} with a slash: this is redundant when
PREFIX is an absolute path (common case) and could break things if it is not (and DESTDIR is empty). Should have been part of r439766.
Notes
Notes: svn path=/head/; revision=439768
-rw-r--r--comms/direwolf/files/Makefile.FreeBSD2
1 files changed, 1 insertions, 1 deletions
diff --git a/comms/direwolf/files/Makefile.FreeBSD b/comms/direwolf/files/Makefile.FreeBSD
index 9041311a9726..98625bd81c4c 100644
--- a/comms/direwolf/files/Makefile.FreeBSD
+++ b/comms/direwolf/files/Makefile.FreeBSD
@@ -191,7 +191,7 @@ direwolf.conf : generic.conf
# This is a step in the right direction but not sufficient to use /usr instead.
# Eventually I'd like to have targets here to build the .DEB and .RPM packages.
-INSTALLDIR := ${DESTDIR}/${PREFIX}
+INSTALLDIR := ${DESTDIR}${PREFIX}
SHAREDIR := ${INSTALLDIR}/share
# Command to "install" to system directories. Use "ginstall" for Mac.