1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-28 05:29:48 +00:00

Fix packaging on head, .MAKE.FreeBSD_UL has been retired from bmake

With hat:	portmgr
This commit is contained in:
Antoine Brodin 2014-05-29 06:24:08 +00:00
parent 3cd186f9db
commit 7e36c656f6
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=355668

View File

@ -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