svn commit: r308150 - in head: etc share/examples
Glen Barber
gjb at FreeBSD.org
Mon Oct 31 21:11:47 UTC 2016
Author: gjb
Date: Mon Oct 31 21:11:46 2016
New Revision: 308150
URL: https://svnweb.freebsd.org/changeset/base/308150
Log:
Fix packaging /usr/share/examples/etc.
Reported by: woodsb02
MFC after: 3 days
X-MFC-With: r308148
Sponsored by: The FreeBSD Foundation
Modified:
head/etc/Makefile
head/share/examples/Makefile
Modified: head/etc/Makefile
==============================================================================
--- head/etc/Makefile Mon Oct 31 20:43:43 2016 (r308149)
+++ head/etc/Makefile Mon Oct 31 21:11:46 2016 (r308150)
@@ -459,7 +459,7 @@ distrib-dirs: ${MTREES:N/*} distrib-clea
.endif
etc-examples-install: ${META_DEPS}
- cd ${.CURDIR}; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 \
+ cd ${.CURDIR}; ${INSTALL} ${TAG_ARGS} -o ${BINOWN} -g ${BINGRP} -m 444 \
${BIN1} ${BIN2} nsmb.conf opieaccess \
${DESTDIR}${SHAREDIR}/examples/etc
Modified: head/share/examples/Makefile
==============================================================================
--- head/share/examples/Makefile Mon Oct 31 20:43:43 2016 (r308149)
+++ head/share/examples/Makefile Mon Oct 31 21:11:46 2016 (r308150)
@@ -250,7 +250,7 @@ copies:
symlinks:
.for i in ${LDIRS}
rm -rf ${DESTDIR}${BINDIR}/$i
- ln -s ${.CURDIR}/$i ${DESTDIR}${BINDIR}/$i
+ ${INSTALL} ${TAG_ARGS} -l s ${.CURDIR}/$i ${DESTDIR}${BINDIR}/$i
.endfor
etc-examples:
More information about the svn-src-all
mailing list