diff options
author | Kurt Jaeger <pi@FreeBSD.org> | 2019-01-07 19:27:30 +0000 |
---|---|---|
committer | Kurt Jaeger <pi@FreeBSD.org> | 2019-01-07 19:27:30 +0000 |
commit | 0b26a2b4e50f2fc12da64bfd0d2992593c25ac24 (patch) | |
tree | 69fa070f5d635e3e5ad40cecca6a007cd30a727f | |
parent | Fix build with DEFAULT_VERSIONS=python=3.x (diff) |
x11-toolkits/p5-Tk: Do not set CONFIGURE_ARGS twice
The port currently sets CONFIGURE_ARGS twice.
The second CONFIGURE_ARGS= overwrites the first, therefore X11INC and
X11LIB are not in CONFIGURE_ARGS. The ports builds anyway, so
the first CONFIGURE_ARGS can be removed.
PR: 234704
Submitted by: tobik
Notes
Notes:
svn path=/head/; revision=489609
-rw-r--r-- | x11-toolkits/p5-Tk/Makefile | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/x11-toolkits/p5-Tk/Makefile b/x11-toolkits/p5-Tk/Makefile index ff5feef7a214..701abb245b51 100644 --- a/x11-toolkits/p5-Tk/Makefile +++ b/x11-toolkits/p5-Tk/Makefile @@ -20,7 +20,6 @@ OPTIONS_DEFINE= XFT OPTIONS_DEFAULT= XFT XFT_DESC= Client-side fonts via libXft -CONFIGURE_ARGS= X11INC=${LOCALBASE}/include X11LIB=${LOCALBASE}/lib MAKE_JOBS_UNSAFE= yes USES= jpeg perl5 shebangfix SHEBANG_FILES= pTk/Tcl-pTk \ |