diff options
author | joerg <joerg> | 2005-12-22 23:23:17 +0000 |
---|---|---|
committer | joerg <joerg> | 2005-12-22 23:23:17 +0000 |
commit | d7416822b73323098f5cf013763b77b580308592 (patch) | |
tree | 08c0c477acfd028acd1086d46f25be97a9c3ba81 | |
parent | 415bb4b3a3f5590c0d7a0d94e91a699115bd97a0 (diff) | |
download | pkgsrc-d7416822b73323098f5cf013763b77b580308592.tar.gz |
Include TK_LD_FLAGS and TCL_LD_FLAGS for the link specification,
otherwise the rpath list can be incomplete.
-rw-r--r-- | x11/labltk/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/x11/labltk/Makefile b/x11/labltk/Makefile index b24485fa3d4..817c958bd55 100644 --- a/x11/labltk/Makefile +++ b/x11/labltk/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.3 2005/06/14 21:00:41 minskim Exp $ +# $NetBSD: Makefile,v 1.4 2005/12/22 23:23:17 joerg Exp $ .include "../../lang/ocaml/Makefile.common" @@ -10,7 +10,7 @@ COMMENT= Tk bindings for ocaml CONFIGURE_ARGS+= -x11include ${X11BASE}/include CONFIGURE_ARGS+= -x11lib ${X11BASE}/lib CONFIGURE_ARGS+= -tkdefs "-I${BUILDLINK_PREFIX.tk}/include -I${BUILDLINK_PREFIX.tcl}/include" -CONFIGURE_ARGS+= -tklibs "`${SH} -c '. ${TCLCONFIG_SH}; . ${TKCONFIG_SH}; ${ECHO} $$TK_LIBS $$TCL_LIBS'`" +CONFIGURE_ARGS+= -tklibs "`${SH} -c '. ${TCLCONFIG_SH}; . ${TKCONFIG_SH}; ${ECHO} $$TK_LD_FLAGS $$TCL_LD_FLAGS $$TK_LIBS $$TCL_LIBS'`" BUILD_TARGET= world INSTALL_DIRS= ${WRKSRC}/otherlibs/labltk |