diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 2002-10-04 18:12:04 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 2002-10-04 18:12:04 +0000 |
commit | 3affbc30378260b8ee270a00ea23ff87c2b87c3a (patch) | |
tree | b5f119e5dc77c5972e74a9f3f9ee5aead4cb3de8 /gnu/usr.bin | |
parent | 549aa31ad7f0d02e8b8af0f34c2d2b2f00ab2036 (diff) |
since we lndir the sources we do not need the .CURDIR in the toke deps
Diffstat (limited to 'gnu/usr.bin')
-rw-r--r-- | gnu/usr.bin/perl/Makefile.bsd-wrapper | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gnu/usr.bin/perl/Makefile.bsd-wrapper b/gnu/usr.bin/perl/Makefile.bsd-wrapper index 48602af0be3..47843b09cef 100644 --- a/gnu/usr.bin/perl/Makefile.bsd-wrapper +++ b/gnu/usr.bin/perl/Makefile.bsd-wrapper @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.bsd-wrapper,v 1.49 2002/10/04 18:07:30 mickey Exp $ +# $OpenBSD: Makefile.bsd-wrapper,v 1.50 2002/10/04 18:12:03 mickey Exp $ # # Build wrapper for Perl 5.6.1 # @@ -411,25 +411,25 @@ perly.c perly.h: perly.y # these dump the core on toke .if ${MACHINE} == "hppa" -toke.o: ${.CURDIR}/toke.c +toke.o: toke.c @echo "${COMPILE.c} ${.IMPSRC} -O0 -o ${.TARGET}" @${COMPILE.c} ${.IMPSRC} -O0 -o ${.TARGET}.o @${LD} -x -r ${.TARGET}.o -o ${.TARGET} @rm -f ${.TARGET}.o -toke.go: ${.CURDIR}/toke.c +toke.go: toke.c @echo "${COMPILE.c} -g ${.IMPSRC} -O0 -o ${.TARGET}" @${COMPILE.c} -g ${.IMPSRC} -O0 -o ${.TARGET}.o @${LD} -X -r ${.TARGET}.o -o ${.TARGET} @rm -f ${.TARGET}.o -toke.po: ${.CURDIR}/toke.c +toke.po: toke.c @echo "${COMPILE.c} -p ${.IMPSRC} -O0 -o ${.TARGET}" @${COMPILE.c} -p ${.IMPSRC} -O0 -o ${.TARGET}.o @${LD} -X -r ${.TARGET}.o -o ${.TARGET} @rm -f ${.TARGET}.o -toke.so: ${.CURDIR}/toke.c +toke.so: toke.c @echo "${COMPILE.c} ${PICFLAG} -DPIC ${.IMPSRC} -O0 -o ${.TARGET}" @${COMPILE.c} ${PICFLAG} -DPIC ${.IMPSRC} -O0 -o ${.TARGET}.o @${LD} -x -r ${.TARGET}.o -o ${.TARGET} |