diff options
author | rillig <rillig> | 2005-12-08 09:03:50 +0000 |
---|---|---|
committer | rillig <rillig> | 2005-12-08 09:03:50 +0000 |
commit | 890cf2489950c5c937a1abf4da9ed2113b82aff5 (patch) | |
tree | 7fe274a25fac0b6a50f1c656f062029b202a8f18 /devel/id-utils | |
parent | 6be4abc6572e60bfacd73b1ed66e019e455540b7 (diff) | |
download | pkgsrc-890cf2489950c5c937a1abf4da9ed2113b82aff5.tar.gz |
Fixed improper use of '@comment ' in the LISPDIR and CLISPDIR variables.
Diffstat (limited to 'devel/id-utils')
-rw-r--r-- | devel/id-utils/Makefile | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/devel/id-utils/Makefile b/devel/id-utils/Makefile index c11602b4470..3a62db7b5ca 100644 --- a/devel/id-utils/Makefile +++ b/devel/id-utils/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.40 2005/12/05 20:50:04 rillig Exp $ +# $NetBSD: Makefile,v 1.41 2005/12/08 09:03:50 rillig Exp $ DISTNAME= id-utils-3.2 PKGREVISION= 6 @@ -32,12 +32,12 @@ BUILD_DEPENDS+= emacs-[0-9]*:../../editors/emacs # install byte-compiled file here whenever we use emacs or xemacs... .if defined(USE_EMACS) || defined(USE_XEMACS) # we end-up installing .el file there whenever we use emacs or xemacs -LISPDIR?= share/emacs/site-lisp -CLISPDIR= ${LISPDIR} +PLIST_SUBST+= LISPDIR=share/emacs/site-lisp +PLIST_SUBST+= CLISPDIR=share/emacs/site-lisp .else # ...or don't install it at all -LISPDIR?= '@comment ' -CLISPDIR?= '@comment ' +PLIST_SUBST+= LISPDIR='@comment ' +PLIST_SUBST+= CLISPDIR='@comment ' .endif # if not already, set this to the *full* pathname to false command # so configure won't search further for emacs @@ -47,8 +47,5 @@ CONFIGURE_ENV+= EMACS=${EMACS:Q} BUILD_DEFS+= EMACS MAKE_ENV+= BSD_SETENV=${SETENV:Q} -PLIST_SUBST+= LISPDIR=${LISPDIR:Q} -PLIST_SUBST+= CLISPDIR=${CLISPDIR:Q} - .include "../../devel/gettext-lib/buildlink3.mk" .include "../../mk/bsd.pkg.mk" |