Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 10 Aug 2014 00:18:54 +0000
From:      bugzilla-noreply@freebsd.org
To:        freebsd-ports-bugs@FreeBSD.org
Subject:   [Bug 192532] [stage][maintainer] Update Port: www/ephemera to 4.0
Message-ID:  <bug-192532-13-JGVdj7bjDQ@https.bugs.freebsd.org/bugzilla/>
In-Reply-To: <bug-192532-13@https.bugs.freebsd.org/bugzilla/>
References:  <bug-192532-13@https.bugs.freebsd.org/bugzilla/>

next in thread | previous in thread | raw e-mail | index | archive | help
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=192532

--- Comment #6 from John Marino <marino@FreeBSD.org> ---
everything looks fine except this stage-qa warning:

====> Running Q/A tests (stage-qa)
Warning: 'bin/ephemera' is not stripped consider using ${STRIP_CMD}
====> Checking for pkg-plist issues (check-plist)


I checked the port and it's used the vendor makefile to install.  One solution
for the above is use "${BSD_INSTALL_PROGRAM} <original patch> <copy-to-patch>"
rather than "cp" or "install" or whatever.  BSD_INSTALL_PROGRAM is an
environmental variable set during "do-install" target.

The less pretty way is use a post-install target e.g.

post-install:
  ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/ephemera

Note that STRIP_CMD is disabled when WITH_DEBUG is set.

-- 
You are receiving this mail because:
You are the assignee for the bug.



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-192532-13-JGVdj7bjDQ>