svn commit: r439768 - head/comms/direwolf/files

Alexey Dokuchaev danfe at FreeBSD.org
Sat Apr 29 17:55:57 UTC 2017


Author: danfe
Date: Sat Apr 29 17:55:55 2017
New Revision: 439768
URL: https://svnweb.freebsd.org/changeset/ports/439768

Log:
  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.

Modified:
  head/comms/direwolf/files/Makefile.FreeBSD

Modified: head/comms/direwolf/files/Makefile.FreeBSD
==============================================================================
--- head/comms/direwolf/files/Makefile.FreeBSD	Sat Apr 29 17:51:47 2017	(r439767)
+++ head/comms/direwolf/files/Makefile.FreeBSD	Sat Apr 29 17:55:55 2017	(r439768)
@@ -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.


More information about the svn-ports-head mailing list