pkgsrc-Changes archive

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

CVS commit: pkgsrc/time/kronolith



Module Name:    pkgsrc
Committed By:   gutteridge
Date:           Sun Dec 28 18:34:45 UTC 2025

Modified Files:
        pkgsrc/time/kronolith: Makefile

Log Message:
kronolith: fix make(1) substitution in INSTALLATION_DIRS

Back in May 2020, make(1) was changed to disallow the particular
substitution form used in one of the INSTALLATION_DIRS assignments.
https://github.com/NetBSD/src/commit/3b58d8437a0b171a42895aedbcd93e4f8b8c10e0
Incorrect/useless DESTDIR directories have been created by builds using
newer versions of the tool, though this is harmless.


To generate a diff of this commit:
cvs rdiff -u -r1.30 -r1.31 pkgsrc/time/kronolith/Makefile

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

Modified files:

Index: pkgsrc/time/kronolith/Makefile
diff -u pkgsrc/time/kronolith/Makefile:1.30 pkgsrc/time/kronolith/Makefile:1.31
--- pkgsrc/time/kronolith/Makefile:1.30 Sat Feb  8 03:56:22 2025
+++ pkgsrc/time/kronolith/Makefile      Sun Dec 28 18:34:45 2025
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.30 2025/02/08 03:56:22 taca Exp $
+# $NetBSD: Makefile,v 1.31 2025/12/28 18:34:45 gutteridge Exp $
 
 DISTNAME=      kronolith-h3-${KRONOLITHVER}
 PKGNAME=       kronolith-${KRONOLITHVER}
@@ -31,7 +31,7 @@ PAXDIRS=      calendars feed js lib locale po
 INSTALLATION_DIRS+=    ${DOCDIR}
 INSTALLATION_DIRS+=    ${EGDIR}
 INSTALLATION_DIRS+=    ${KRONOLITHDIR}/config
-INSTALLATION_DIRS+=    ${PAXDIRS:=${KRONOLITHDIR}/%}
+INSTALLATION_DIRS+=    ${PAXDIRS:%=${KRONOLITHDIR}/%}
 
 REPLACE_INTERPRETER+=  php
 REPLACE.php.old=       .*/bin.php



Home | Main Index | Thread Index | Old Index