aboutsummaryrefslogtreecommitdiffstats
path: root/ports-mgmt
diff options
context:
space:
mode:
authorantoine <antoine@FreeBSD.org>2014-05-29 14:24:08 +0800
committerantoine <antoine@FreeBSD.org>2014-05-29 14:24:08 +0800
commit256c511caff94cade5414dc01421d20a4e838f28 (patch)
tree6fc969e670fc4d016d2073e624ad709bc2a7d0f5 /ports-mgmt
parenta151ac094f94c440f565925f7b7ffb3b5b1682ac (diff)
downloadfreebsd-ports-gnome-256c511caff94cade5414dc01421d20a4e838f28.tar.gz
freebsd-ports-gnome-256c511caff94cade5414dc01421d20a4e838f28.tar.zst
freebsd-ports-gnome-256c511caff94cade5414dc01421d20a4e838f28.zip
Fix packaging on head, .MAKE.FreeBSD_UL has been retired from bmake
With hat: portmgr
Diffstat (limited to 'ports-mgmt')
-rw-r--r--ports-mgmt/pkg/files/patch-scripts__periodic__Makefile18
1 files changed, 18 insertions, 0 deletions
diff --git a/ports-mgmt/pkg/files/patch-scripts__periodic__Makefile b/ports-mgmt/pkg/files/patch-scripts__periodic__Makefile
new file mode 100644
index 000000000000..3b0ea9c87675
--- /dev/null
+++ b/ports-mgmt/pkg/files/patch-scripts__periodic__Makefile
@@ -0,0 +1,18 @@
+--- ./scripts/periodic/Makefile.orig 2014-03-15 13:15:46.000000000 +0000
++++ ./scripts/periodic/Makefile 2014-05-29 06:02:03.000000000 +0000
+@@ -16,14 +16,11 @@
+
+ all: ${SCRIPTS}
+
+-# tell bmake we use the old :L :U modifiers
+-.MAKE.FreeBSD_UL= yes
+-
+ install: all
+ .for period in daily weekly security
+
+ install -d ${DESTDIR}${PREFIX}/etc/periodic/${period}
+-. for periodic in ${SCRIPTS_${period:U}:R}
++. for periodic in ${SCRIPTS_${period:tu}:R}
+ install -m 555 ${periodic} ${DESTDIR}${PREFIX}/etc/periodic/${period}
+ . endfor
+ .endfor