diff options
author | Jason Downs <downsj@cvs.openbsd.org> | 1996-08-21 06:58:47 +0000 |
---|---|---|
committer | Jason Downs <downsj@cvs.openbsd.org> | 1996-08-21 06:58:47 +0000 |
commit | 6dbf43386d8f0001e599a142106c541d6dd92850 (patch) | |
tree | 99e3f7854e60d69ba38756aaac9c8cd7baedbac3 /gnu/usr.bin | |
parent | e3fad46ed52ec3fa73a0ce301c2f79a681f39122 (diff) |
Note about lndir; add specific path.
Diffstat (limited to 'gnu/usr.bin')
-rw-r--r-- | gnu/usr.bin/perl/Makefile.bsd-wrapper | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/gnu/usr.bin/perl/Makefile.bsd-wrapper b/gnu/usr.bin/perl/Makefile.bsd-wrapper index 2b59d848738..d5ebfb66fdb 100644 --- a/gnu/usr.bin/perl/Makefile.bsd-wrapper +++ b/gnu/usr.bin/perl/Makefile.bsd-wrapper @@ -1,8 +1,12 @@ -# $OpenBSD: Makefile.bsd-wrapper,v 1.2 1996/08/20 18:01:36 downsj Exp $ +# $OpenBSD: Makefile.bsd-wrapper,v 1.3 1996/08/21 06:58:46 downsj Exp $ # # Build wrapper for Perl 5.003. # +# Our lndir is hacked; specify a full path to avoid potential conflicts +# with the one installed with X11. +LNDIR= /usr/bin/lndir + MAN= x2p/a2p.man x2p/s2p.man pod/perl.man pod/perlbook.man \ pod/perlbot.man pod/perlcall.man pod/perldata.man \ pod/perldebug.man pod/perldiag.man pod/perldsc.man \ @@ -31,7 +35,7 @@ GENERATED= config.sh Makefile cflags config.h makeaperl makedepend \ CLEANFILES= config.sh .BEGIN: - @if [ ${.CURDIR} != ${.OBJDIR} ]; then lndir -s -e obj -e obj.${MACHINE_ARCH} -e Makefile.bsd-wrapper ${.CURDIR}; fi + @if [ ${.CURDIR} != ${.OBJDIR} ]; then ${LNDIR} -s -e obj -e obj.${MACHINE_ARCH} -e Makefile.bsd-wrapper ${.CURDIR}; fi all: ${GENERATED} (cd ${.OBJDIR}; ${MAKE}) |