diff options
author | bapt <bapt@FreeBSD.org> | 2014-08-26 05:03:08 +0800 |
---|---|---|
committer | bapt <bapt@FreeBSD.org> | 2014-08-26 05:03:08 +0800 |
commit | 908ce63f5da57df3489ba4046f573d29720c4a0f (patch) | |
tree | eca8562dfcfaf91ff2d2acd06aa561e7321ee98b /ports-mgmt | |
parent | ffc97891270315a54debca92854ffe00fde109d3 (diff) | |
download | freebsd-ports-gnome-908ce63f5da57df3489ba4046f573d29720c4a0f.tar.gz freebsd-ports-gnome-908ce63f5da57df3489ba4046f573d29720c4a0f.tar.zst freebsd-ports-gnome-908ce63f5da57df3489ba4046f573d29720c4a0f.zip |
Do not strip binaries at all this port is a developement ports and should remain with symbols
While here remove remnant code from the pkg pre 1.3 build system.
Diffstat (limited to 'ports-mgmt')
-rw-r--r-- | ports-mgmt/pkg-devel/Makefile | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/ports-mgmt/pkg-devel/Makefile b/ports-mgmt/pkg-devel/Makefile index 62b19ba1bfbd..db380195a1df 100644 --- a/ports-mgmt/pkg-devel/Makefile +++ b/ports-mgmt/pkg-devel/Makefile @@ -23,6 +23,7 @@ USE_LDCONFIG= yes USES= libtool tar:xz GNU_CONFIGURE= yes CONFIGURE_ARGS= --disable-maintainer-mode +INSTALL_TARGET= install-strip # Use a submake as 'deinstall install' needs to reevaluate PKG_CMD # so that pkg-static is used from the wrkdir @@ -34,10 +35,6 @@ EXTRA_PATCHES= ${FILESDIR}/extra-patch-docs_pkg.8 .include <bsd.port.pre.mk> -.if defined(WITH_DEBUG) && !defined(WITHOUT_DEBUG) -MAKE_ARGS+= DEBUG_FLAGS="${DEBUG_FLAGS}" -.endif - .if defined(WITH_PKGNG) .if ${WITH_PKGNG} != devel NO_LATEST_LINK= yes @@ -94,6 +91,5 @@ PKG_BIN= ${WRKSRC}/src/pkg-static post-install: @${MV} ${STAGEDIR}${PREFIX}/lib/libpkg_static.a \ ${STAGEDIR}${PREFIX}/lib/libpkg.a - @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libpkg.so.3 .include <bsd.port.post.mk> |