diff options
author | Tim Vanderhoek <hoek@FreeBSD.org> | 2003-08-18 03:01:05 +0000 |
---|---|---|
committer | Tim Vanderhoek <hoek@FreeBSD.org> | 2003-08-18 03:01:05 +0000 |
commit | 9b492c476356fa1a327fd450fb22577ab56e201d (patch) | |
tree | 6e800730f097513bc1f252d13d0df0087ccf5209 /sysutils | |
parent | ae840a31404c057d0368b5d703d6b33b5c730251 (diff) |
Use standard ${EXAMPLESDIR} instead of ${EXAMPDIR}. The two variables
just so happen to point to the same place.
PR: ports/55288 (Volker Stolz)
Notes
Notes:
svn path=/head/; revision=87165
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/44bsd-more/Makefile | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/sysutils/44bsd-more/Makefile b/sysutils/44bsd-more/Makefile index f286f3e7de16..f13fe3b117a3 100644 --- a/sysutils/44bsd-more/Makefile +++ b/sysutils/44bsd-more/Makefile @@ -21,7 +21,6 @@ NO_WRKSUBDIR= yes MAN1= 44bsd-more.1 RELDATE= 20000521 -EXAMPDIR= ${PREFIX}/share/examples/44bsd-more post-extract: -cd ${WRKSRC} && co -d${RELDATE} RCS/*,v @@ -33,11 +32,11 @@ post-patch: ${CP} ${FILESDIR}/queue.h ${WRKSRC} do-install: - ${MKDIR} ${EXAMPDIR} + ${MKDIR} ${EXAMPLESDIR} ${INSTALL_MAN} ${WRKSRC}/more.1 ${PREFIX}/man/man1/44bsd-more.1 - ${INSTALL_DATA} ${WRKSRC}/default.morerc ${EXAMPDIR} - ${INSTALL_DATA} ${WRKSRC}/less.morerc ${EXAMPDIR} - ${INSTALL_DATA} ${WRKSRC}/most.morerc ${EXAMPDIR} +.for f in default.morerc less.morerc most.morerc + ${INSTALL_DATA} ${WRKSRC}/${f} ${EXAMPLESDIR} +.endfor ${INSTALL_DATA} ${WRKSRC}/more.help ${PREFIX}/share/misc/44bsd-more.help ${INSTALL_PROGRAM} ${WRKSRC}/more ${PREFIX}/bin/44bsd-more |