diff options
author | jwise <jwise> | 1999-11-05 15:37:53 +0000 |
---|---|---|
committer | jwise <jwise> | 1999-11-05 15:37:53 +0000 |
commit | d91d2a3e82cec16303b19f2b9b0f86b80794b8d6 (patch) | |
tree | 7aaab84d025b4a3984ded77ad069671cb3ff59b6 /print | |
parent | a4bac721df57cdb038f978ed13c7cb4efa736a73 (diff) | |
download | pkgsrc-d91d2a3e82cec16303b19f2b9b0f86b80794b8d6.tar.gz |
-Wl,-R${X11BASE}/lib, so this works on ELF.
As an X-Window front-end to LaTeX, shouldn't this install into ${X11BASE}?
Diffstat (limited to 'print')
-rw-r--r-- | print/lyx/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/print/lyx/Makefile b/print/lyx/Makefile index 209c9a92795..ee4408cf575 100644 --- a/print/lyx/Makefile +++ b/print/lyx/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.20 1999/08/20 01:44:48 fredb Exp $ +# $NetBSD: Makefile,v 1.21 1999/11/05 15:37:53 jwise Exp $ # FreeBSD Id: Makefile,v 1.14 1998/02/14 16:46:50 andreas Exp # @@ -17,7 +17,9 @@ DEPENDS= ispell-3.1.20:../../textproc/ispell \ USE_PERL5= yes GNU_CONFIGURE= yes -CONFIGURE_ARGS= --with-extra-lib=${X11BASE}/lib \ +CONFIGURE_ARGS= --with-extra-lib="${X11BASE}/lib" \ --with-extra-inc="${X11BASE}/include ${X11BASE}/include/X11" +LDFLAGS+= -L${X11BASE}/lib -Wl,-R${X11BASE}/lib + .include "../../mk/bsd.pkg.mk" |