pkgsrc-Changes archive

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

CVS commit: pkgsrc/net/freeradius



Module Name:    pkgsrc
Committed By:   gutteridge
Date:           Tue Apr 12 01:02:47 UTC 2022

Modified Files:
        pkgsrc/net/freeradius: config.mk

Log Message:
freeradius: tweak list generation code examples (NFC)

It's better to generate these lists from the resulting package to be
installed via DESTDIR, rather than the ingoing source, as not everything
found in the latter is installed. (The sed command also doesn't work
with BSD sed as intended, but that's left as-is.)


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 pkgsrc/net/freeradius/config.mk

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

Modified files:

Index: pkgsrc/net/freeradius/config.mk
diff -u pkgsrc/net/freeradius/config.mk:1.3 pkgsrc/net/freeradius/config.mk:1.4
--- pkgsrc/net/freeradius/config.mk:1.3 Mon Apr 11 02:05:27 2022
+++ pkgsrc/net/freeradius/config.mk     Tue Apr 12 01:02:47 2022
@@ -1,6 +1,6 @@
-# $NetBSD: config.mk,v 1.3 2022/04/11 02:05:27 gutteridge Exp $
+# $NetBSD: config.mk,v 1.4 2022/04/12 01:02:47 gutteridge Exp $
 
-# cd ${WRKSRC}/raddb; find . -type f -or -type l | sort | sed 's,^./,EGFILES+=\t,'
+# cd ${DESTDIR}${EGDIR}/raddb; find . -type f -or -type l | sort | sed 's,^./,EGFILES+=\t,'
 EGFILES+=      README.rst
 EGFILES+=      certs/Makefile
 EGFILES+=      certs/README.md
@@ -274,7 +274,7 @@ EGFILES+=   sites-enabled/inner-tunnel
 EGFILES+=      templates.conf
 EGFILES+=      trigger.conf
 
-# cd ${WRKSRC}/raddb; find . -type d | sort | sed 's,^./,EGDIRS+=\t,'
+# cd ${DESTDIR}${EGDIR}/raddb; find . -type d | sort | sed 's,^./,EGDIRS+=\t,'
 EGDIRS+=       certs
 EGDIRS+=       mods-available
 EGDIRS+=       mods-config



Home | Main Index | Thread Index | Old Index