From owner-svn-ports-all@freebsd.org Sat Apr 29 17:55:57 2017 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 24C57D55791; Sat, 29 Apr 2017 17:55:57 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E928F80E; Sat, 29 Apr 2017 17:55:56 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v3THttQd076543; Sat, 29 Apr 2017 17:55:55 GMT (envelope-from danfe@FreeBSD.org) Received: (from danfe@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v3THttYw076542; Sat, 29 Apr 2017 17:55:55 GMT (envelope-from danfe@FreeBSD.org) Message-Id: <201704291755.v3THttYw076542@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: danfe set sender to danfe@FreeBSD.org using -f From: Alexey Dokuchaev Date: Sat, 29 Apr 2017 17:55:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r439768 - head/comms/direwolf/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Apr 2017 17:55:57 -0000 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.