]> git.cameronkatri.com Git - pw-darwin.git/commitdiff
Partially revert 278642
authorBaptiste Daroussin <bapt@FreeBSD.org>
Fri, 13 Feb 2015 07:51:26 +0000 (07:51 +0000)
committerBaptiste Daroussin <bapt@FreeBSD.org>
Fri, 13 Feb 2015 07:51:26 +0000 (07:51 +0000)
On reinstall (overwrite) install(1) does not handle chflags

Reported by: ian

chpass/Makefile

index c0cf46cc9690ee42ef0aeb6765f928d2e44c6f1e..9b3e878d8656ad8815492e5b1871ad5d3218a245 100644 (file)
@@ -9,7 +9,6 @@ PROG=   chpass
 SRCS=  chpass.c edit.c field.c pw_scan.c table.c util.c
 BINOWN=        root
 BINMODE=4555
-PRECIOUSPROG=
 .if ${MK_NIS} != "no"
 CFLAGS+= -DYP
 .endif
@@ -35,4 +34,16 @@ MLINKS=      chpass.1 chfn.1 chpass.1 chsh.1
 MLINKS+= chpass.1 ypchpass.1 chpass.1 ypchfn.1 chpass.1 ypchsh.1
 .endif
 
+beforeinstall:
+.for i in chpass chfn chsh ypchpass ypchfn ypchsh
+.if exists(${DESTDIR}${BINDIR}/$i)
+       -chflags noschg ${DESTDIR}${BINDIR}/$i
+.endif
+.endfor
+
+.if !defined(NO_FSCHG)
+afterinstall:
+       -chflags schg ${DESTDIR}${BINDIR}/chpass
+.endif
+
 .include <bsd.prog.mk>