Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 29 Apr 2017 17:55:55 +0000 (UTC)
From:      Alexey Dokuchaev <danfe@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r439768 - head/comms/direwolf/files
Message-ID:  <201704291755.v3THttYw076542@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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.



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201704291755.v3THttYw076542>