diff options
author | dan <dan> | 2007-11-13 04:07:42 +0000 |
---|---|---|
committer | dan <dan> | 2007-11-13 04:07:42 +0000 |
commit | 43ef02a4fbe33ac2d2a8e0b25e4949bfc0720132 (patch) | |
tree | c7a8155bcaa38d56b6e36e8c0044d89d04f2e253 /editors | |
parent | dcea8555c2afe386c1322e904431bbdc7bbdc90f (diff) | |
download | pkgsrc-43ef02a4fbe33ac2d2a8e0b25e4949bfc0720132.tar.gz |
make paths relative to ${.CURDIR}
per request from uebayasi@
Diffstat (limited to 'editors')
-rw-r--r-- | editors/xemacs-current/Makefile.common | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/editors/xemacs-current/Makefile.common b/editors/xemacs-current/Makefile.common index 3617480c648..bcf287bec6a 100644 --- a/editors/xemacs-current/Makefile.common +++ b/editors/xemacs-current/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.1 2007/11/12 01:48:47 uebayasi Exp $ +# $NetBSD: Makefile.common,v 1.2 2007/11/13 04:07:42 dan Exp $ DISTNAME= xemacs-21.5.27 @@ -11,11 +11,11 @@ COMMENT= *BETA* XEmacs text editor version 21.5.27 CONFLICTS+= gnuclient-[0-9]* -DESCR_SRC= ../../editors/xemacs-current/DESCR -PLIST_SRC= ../../editors/xemacs-current/PLIST -DISTINFO_FILE= ../../editors/xemacs-current/distinfo -FILESDIR= ../../editors/xemacs-current/files -PATCHDIR= ../../editors/xemacs-current/patches +DESCR_SRC= ${.CURDIR}/../../editors/xemacs-current/DESCR +PLIST_SRC= ${.CURDIR}/../../editors/xemacs-current/PLIST +DISTINFO_FILE= ${.CURDIR}/../../editors/xemacs-current/distinfo +FILESDIR= ${.CURDIR}/../../editors/xemacs-current/files +PATCHDIR= ${.CURDIR}/../../editors/xemacs-current/patches EMACSVERSION= 21.5-b27 PLIST_SUBST+= EMACSVER=xemacs-${EMACSVERSION} |