aboutsummaryrefslogtreecommitdiff
path: root/ports-mgmt/pkg/files
diff options
context:
space:
mode:
authorAntoine Brodin <antoine@FreeBSD.org>2014-05-29 06:24:08 +0000
committerAntoine Brodin <antoine@FreeBSD.org>2014-05-29 06:24:08 +0000
commit7e36c656f6d92164e7b43f9eb47428f1f9df3f44 (patch)
tree6fc969e670fc4d016d2073e624ad709bc2a7d0f5 /ports-mgmt/pkg/files
parent3cd186f9db54560aeaaa892b181cf0bad232c6a8 (diff)
downloadports-7e36c656f6d92164e7b43f9eb47428f1f9df3f44.tar.gz
ports-7e36c656f6d92164e7b43f9eb47428f1f9df3f44.zip
Fix packaging on head, .MAKE.FreeBSD_UL has been retired from bmake
With hat: portmgr
Notes
Notes: svn path=/head/; revision=355668
Diffstat (limited to 'ports-mgmt/pkg/files')
-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