diff options
author | jperkin <jperkin@pkgsrc.org> | 2015-09-07 12:02:05 +0000 |
---|---|---|
committer | jperkin <jperkin@pkgsrc.org> | 2015-09-07 12:02:05 +0000 |
commit | 67d995c7c2182f3eb264f138cab891061089925d (patch) | |
tree | b5a9abb0790d5444ad5e55a6a860def6e5222560 /editors | |
parent | f4d260fb551c8bda4b60e64dee13b52e21dce6b1 (diff) | |
download | pkgsrc-67d995c7c2182f3eb264f138cab891061089925d.tar.gz |
Now that _STRIPFLAG_INSTALL is disabled by default on Darwin, remove manual
settings of INSTALL_UNSTRIPPED=yes for Darwin in individual packages.
Diffstat (limited to 'editors')
-rw-r--r-- | editors/emacs23/Makefile.common | 6 | ||||
-rw-r--r-- | editors/emacs24/Makefile.common | 9 | ||||
-rw-r--r-- | editors/nvi/Makefile | 3 |
3 files changed, 3 insertions, 15 deletions
diff --git a/editors/emacs23/Makefile.common b/editors/emacs23/Makefile.common index 349787bc182..c1265df8de4 100644 --- a/editors/emacs23/Makefile.common +++ b/editors/emacs23/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.5 2014/12/03 13:58:57 joerg Exp $ +# $NetBSD: Makefile.common,v 1.6 2015/09/07 12:02:05 jperkin Exp $ # # used by editors/emacs23/Makefile # used by editors/emacs23-nox11/Makefile @@ -58,10 +58,6 @@ CHECK_WRKREF_SKIP+= bin/emacs-${EMACS_VERSION} # upstream bug #8395. Details in: # http://lists.gnu.org/archive/html/emacs-bug-tracker/2011-07/msg00445.html CFLAGS+= -fno-pie -# Avoid 'malformed object' errors with older Xcode. -. if ${OS_VERSION:R} < 11 -INSTALL_UNSTRIPPED= yes -. endif .endif .if (${OPSYS} == "NetBSD") && \ diff --git a/editors/emacs24/Makefile.common b/editors/emacs24/Makefile.common index fba2653045c..860bf12c6be 100644 --- a/editors/emacs24/Makefile.common +++ b/editors/emacs24/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.11 2014/10/28 12:45:57 wiz Exp $ +# $NetBSD: Makefile.common,v 1.12 2015/09/07 12:02:05 jperkin Exp $ # # used by editors/emacs24/Makefile # used by editors/emacs24-nox11/Makefile @@ -52,13 +52,6 @@ CHECK_WRKREF_SKIP+= bin/emacs-${EMACS_VERSION} .include "../../mk/bsd.prefs.mk" -.if (${OPSYS} == "Darwin") -# Avoid 'malformed object' errors with older Xcode. -. if ${OS_VERSION:R} < 11 -INSTALL_UNSTRIPPED= yes -. endif -.endif - .if (${OPSYS} == "NetBSD") && \ !exists(/usr/lib/libgcc_s.so) && !exists(/usr/lib/libgcc.a) # NetBSD with native Clang doesn't provide libgcc, everything is in libc. diff --git a/editors/nvi/Makefile b/editors/nvi/Makefile index f0471b9b7f5..723fd26c655 100644 --- a/editors/nvi/Makefile +++ b/editors/nvi/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.48 2015/08/18 07:31:06 wiz Exp $ +# $NetBSD: Makefile,v 1.49 2015/09/07 12:02:05 jperkin Exp $ DISTNAME= nvi-1.81.6 PKGREVISION= 10 @@ -33,7 +33,6 @@ CONFIGURE_ENV+= vi_cv_sys5_pty=no .elif ${OPSYS} == "Darwin" CONFIGURE_ENV+= vi_cv_sys5_pty=no LDFLAGS+= -flat_namespace -INSTALL_UNSTRIPPED= yes .endif # Use of db1 is not officially supported. |