pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/x11/tk



Module Name:    pkgsrc
Committed By:   riastradh
Date:           Wed Jun 14 10:29:45 UTC 2023

Modified Files:
        pkgsrc/x11/tk: Makefile

Log Message:
x11/tk: Need path as it exists at build-time for --with-tcl.

Doesn't appear to get baked into anything in the build product, but
is used at build-time.

_CROSS_DESTDIR is undefined for native compilation, so
${_CROSS_DESTDIR:U} is empty, so no change for native compilation.


To generate a diff of this commit:
cvs rdiff -u -r1.92 -r1.93 pkgsrc/x11/tk/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/x11/tk/Makefile
diff -u pkgsrc/x11/tk/Makefile:1.92 pkgsrc/x11/tk/Makefile:1.93
--- pkgsrc/x11/tk/Makefile:1.92 Sun Jan 29 21:15:19 2023
+++ pkgsrc/x11/tk/Makefile      Wed Jun 14 10:29:45 2023
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.92 2023/01/29 21:15:19 ryoon Exp $
+# $NetBSD: Makefile,v 1.93 2023/06/14 10:29:45 riastradh Exp $
 
 DISTNAME=      tk${TK_VERSION}-src
 PKGNAME=       tk-${TK_VERSION}
@@ -20,7 +20,7 @@ USE_GCC_RUNTIME=      yes
 GNU_CONFIGURE=         yes
 CONFIGURE_DIRS=                unix
 BUILD_DIRS=            ${CONFIGURE_DIRS}
-CONFIGURE_ARGS+=       --with-tcl=${BUILDLINK_PREFIX.tcl}/lib
+CONFIGURE_ARGS+=       --with-tcl=${_CROSS_DESTDIR:U}${BUILDLINK_PREFIX.tcl}/lib
 CONFIGURE_ENV+=                LIB_RUNTIME_DIR=${PREFIX}/lib
 
 PKGCONFIG_OVERRIDE+=   unix/tk.pc.in



Home | Main Index | Thread Index | Old Index