diff options
author | markm <markm@FreeBSD.org> | 2000-01-29 14:18:02 +0000 |
---|---|---|
committer | markm <markm@FreeBSD.org> | 2000-01-29 14:18:02 +0000 |
commit | acbc2c26e9ee49b105eafd2d4ef8b5eab69d2ca0 (patch) | |
tree | d9e94e352ddf4bd2ee3174f9d95a22874b05d232 /gnu | |
parent | 027422c351183c1dfcd26b9d1bd19cfed4054dce (diff) | |
download | FreeBSD-src-acbc2c26e9ee49b105eafd2d4ef8b5eab69d2ca0.zip FreeBSD-src-acbc2c26e9ee49b105eafd2d4ef8b5eab69d2ca0.tar.gz |
Fix for (amongst other things) the cross-compile case where a too-old
version of libperl was being found.
Tested on: beast
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/usr.bin/perl/miniperl/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/usr.bin/perl/miniperl/Makefile b/gnu/usr.bin/perl/miniperl/Makefile index 293f1a4..e8c6214 100644 --- a/gnu/usr.bin/perl/miniperl/Makefile +++ b/gnu/usr.bin/perl/miniperl/Makefile @@ -9,7 +9,7 @@ SRCS= miniperlmain.c config.h # Miniperl _must_ be static!! NOSHARED= yes DPADD= ${LIBPERL} ${LIBM} ${LIBCRYPT} -LDADD= -lperl -lm -lcrypt +LDADD= -L${.OBJDIR}/../libperl -lperl -lm -lcrypt # Trick the bootstrap tools into thinking that miniperl is perl. # This gets overwritten. |