diff options
author | tron <tron> | 2008-04-25 17:58:24 +0000 |
---|---|---|
committer | tron <tron> | 2008-04-25 17:58:24 +0000 |
commit | 57b7fe579ef8deaf09f73579fbaee14ac17cd558 (patch) | |
tree | 20c9cee1e0ab6040d9e3407dcb991b1721e8f1dc /editors | |
parent | 7a3bb936a51ba214b2ed131efe4e73b799f90bb6 (diff) | |
download | pkgsrc-57b7fe579ef8deaf09f73579fbaee14ac17cd558.tar.gz |
Fix inverted test for compressing the ".el" files.
Diffstat (limited to 'editors')
-rw-r--r-- | editors/xemacs/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/editors/xemacs/Makefile b/editors/xemacs/Makefile index 8a7ba2bb9ce..a7e26858858 100644 --- a/editors/xemacs/Makefile +++ b/editors/xemacs/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.86 2008/04/24 15:37:00 jlam Exp $ +# $NetBSD: Makefile,v 1.87 2008/04/25 17:58:24 tron Exp $ PKGNAME?= ${DISTNAME} COMMENT?= XEmacs text editor version 21 @@ -91,11 +91,11 @@ pre-build: .if defined(MANZ) PLIST_SUBST+= ELSUFX='.gz' -.else -PLIST_SUBST+= ELSUFX='' post-install: find ${DESTDIR}${LIBDIR} -name "*.el" -type f -print | xargs ${GZIP_CMD} +.else +PLIST_SUBST+= ELSUFX='' .endif .include "../../databases/gdbm/buildlink3.mk" |