Page Menu
Home
FreeBSD
Search
Configure Global Search
Log In
Files
F103460060
D16430.id45802.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Flag For Later
Award Token
Size
5 KB
Referenced Files
None
Subscribers
None
D16430.id45802.diff
View Options
Index: sbin/pfctl/tests/files/Makefile
===================================================================
--- sbin/pfctl/tests/files/Makefile
+++ sbin/pfctl/tests/files/Makefile
@@ -4,9 +4,7 @@
BINDIR= ${TESTSDIR}
# We use ${.CURDIR} as workaround so that the glob patterns work.
-FILES= ${.CURDIR}/pf????.in
-FILES+= ${.CURDIR}/pf????.include
-FILES+= ${.CURDIR}/pf????.ok
+FILES!= echo ${.CURDIR}/pf????.in ${.CURDIR}/pf????.include ${.CURDIR}/pf????.ok
FILES+= ${.CURDIR}/pfctl_test_descr.sh
.include <bsd.progs.mk>
Index: share/mk/bsd.files.mk
===================================================================
--- share/mk/bsd.files.mk
+++ share/mk/bsd.files.mk
@@ -5,6 +5,10 @@
.endif
.if !target(__<bsd.files.mk>__)
+.if target(__<bsd.dirs.mk>__)
+.error bsd.dirs.mk must be included after bsd.files.mk.
+.endif
+
__<bsd.files.mk>__:
FILESGROUPS?= FILES
@@ -31,7 +35,7 @@
${group}GRP= ${SHAREGRP}
.endif
${group}MODE?= ${SHAREMODE}
-${group}DIR?= ${BINDIR}
+${group}DIR?= BINDIR
STAGE_SETS+= ${group:C,[/*],_,g}
STAGE_DIR.${group:C,[/*],_,g}= ${STAGE_OBJTOP}${${group}DIR}
@@ -43,71 +47,72 @@
.endif
-_${group}FILES=
-.for file in ${${group}}
-.if defined(${group}OWN_${file:T}) || defined(${group}GRP_${file:T}) || \
- defined(${group}MODE_${file:T}) || defined(${group}DIR_${file:T}) || \
- defined(${group}NAME_${file:T}) || defined(${group}NAME)
-${group}OWN_${file:T}?= ${${group}OWN}
-${group}GRP_${file:T}?= ${${group}GRP}
-.if ${MK_INSTALL_AS_USER} == "yes"
-${group}OWN_${file:T}= ${SHAREOWN}
-${group}GRP_${file:T}= ${SHAREGRP}
-.endif
-${group}MODE_${file:T}?= ${${group}MODE}
-${group}DIR_${file:T}?= ${${group}DIR}
-.if defined(${group}NAME)
-${group}NAME_${file:T}?= ${${group}NAME}
+.if ${${group}DIR:S/^\///} == ${${group}DIR}
+# ${group}DIR specifies a variable that specifies a path
+DIRS+= ${${group}DIR}
+_${group}DIR= ${${group}DIR}
.else
-${group}NAME_${file:T}?= ${file:T}
+# ${group}DIR specifies a path
+DIRS+= ${group}DIR
+_${group}DIR= ${group}DIR
.endif
-STAGE_AS_SETS+= ${file:T}
-STAGE_AS_${file:T}= ${${group}NAME_${file:T}}
-# XXX {group}OWN,GRP,MODE
-STAGE_DIR.${file:T}= ${STAGE_OBJTOP}${${group}DIR_${file:T}}
-stage_as.${file:T}: ${file}
-installfiles-${group}: installdirs-${group} _${group}INS_${file:T}
-_${group}INS_${file:T}: ${file}
- ${INSTALL} ${${group}TAG_ARGS} -o ${${group}OWN_${.ALLSRC:T}} \
- -g ${${group}GRP_${.ALLSRC:T}} -m ${${group}MODE_${.ALLSRC:T}} \
- ${.ALLSRC} \
- ${DESTDIR}${${group}DIR_${.ALLSRC:T}}/${${group}NAME_${.ALLSRC:T}}
+
+.for file in ${${group}}
+${group}OWN_${file}?= ${${group}OWN}
+${group}GRP_${file}?= ${${group}GRP}
+.if ${MK_INSTALL_AS_USER} == "yes"
+${group}OWN_${file}= ${SHAREOWN}
+${group}GRP_${file}= ${SHAREGRP}
+.endif # ${MK_INSTALL_AS_USER} == "yes"
+${group}MODE_${file}?= ${${group}MODE}
+
+# Determine the directory for the current file. Default to the parent group
+# DIR, then check to see how to pass that variable on below.
+${group}DIR_${file}?= ${${group}DIR}
+.if ${${group}DIR_${file}:S/^\///} == ${${group}DIR_${file}}
+# DIR specifies a variable that specifies a path
+_${group}DIR_${file}= ${${group}DIR_${file}}
.else
-_${group}FILES+= ${file}
+# DIR directly specifies a path
+_${group}DIR_${file}= ${group}DIR_${file}
.endif
-.endfor
-
+${group}PREFIX_${file}= ${DESTDIR}${${_${group}DIR_${file}}}
-installdirs-${group}:
- @${ECHO} installing dirs ${group}DIR ${${group}DIR}
-.for dir in ${${group}DIR}
-.if defined(NO_ROOT)
- ${INSTALL} ${${group}TAG_ARGS} -d ${DESTDIR}${dir}
+# Append DIR to DIRS if not already in place -- DIRS is already filtered, so
+# this is primarily to ease inspection.
+.for d in ${DIRS}
+_DIRS+= ${${d}}
+.endfor
+.if ${DIRS:M${_${group}DIR_${file}}} == ""
+.if ${_DIRS:M${${_${group}DIR_${file}}}} == ""
+DIRS+= ${_${group}DIR_${file}}
.else
- ${INSTALL} ${${group}TAG_ARGS} -d -o ${DIROWN} -g ${DIRGRP} \
- -m ${DIRMODE} ${DESTDIR}${dir}
+_${group}DIR_${file}= ${group}DIR
+.endif
.endif
-.endfor
-
-
-.if !empty(_${group}FILES)
-stage_files.${group}: ${_${group}FILES}
-installfiles-${group}: installdirs-${group} _${group}INS
-_${group}INS: ${_${group}FILES}
.if defined(${group}NAME)
- ${INSTALL} ${${group}TAG_ARGS} -o ${${group}OWN} -g ${${group}GRP} \
- -m ${${group}MODE} ${.ALLSRC} \
- ${DESTDIR}${${group}DIR}/${${group}NAME}
+${group}NAME_${file}?= ${${group}NAME}
.else
- ${INSTALL} ${${group}TAG_ARGS} -o ${${group}OWN} -g ${${group}GRP} \
- -m ${${group}MODE} ${.ALLSRC} ${DESTDIR}${${group}DIR}/
-.endif
-.endif
+${group}NAME_${file}?= ${file:T}
+.endif # defined(${group}NAME)
+STAGE_AS_SETS+= ${file}
+STAGE_AS_${file}= ${${group}NAME_${file}}
+# XXX {group}OWN,GRP,MODE
+STAGE_DIR.${file}= ${STAGE_OBJTOP}${${group}DIR_${file}}
+stage_as.${file}: ${file}
+
+installfiles-${group}: _${group}INS1_${file}
+_${group}INS1_${file}: installdirs-${_${group}DIR_${file}} _${group}INS_${file}
+_${group}INS_${file}: ${file}
+ ${INSTALL} ${${group}TAG_ARGS} -o ${${group}OWN_${file}} \
+ -g ${${group}GRP_${file}} -m ${${group}MODE_${file}} \
+ ${.ALLSRC} ${${group}PREFIX_${file}}/${${group}NAME_${file}}
+.endfor # file in ${${group}}
.endif # defined(${group}) && !empty(${group})
-.endfor
+.endfor # .for group in ${FILESGROUPS}
realinstall: installfiles
.ORDER: beforeinstall installfiles
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Tue, Nov 26, 7:50 AM (13 h, 11 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
14857102
Default Alt Text
D16430.id45802.diff (5 KB)
Attached To
Mode
D16430: Update bsd.files.mk to use DIRS and simplify a bit
Attached
Detach File
Event Timeline
Log In to Comment