diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2016-11-19 08:45:52 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2016-11-19 08:45:52 +0000 |
commit | 677cea8a80fbff13f8a722ceb3321986b836e18b (patch) | |
tree | e14ebbc1d735c1af962b96a67c672491546ddf8e /lib | |
parent | c129c1f06797652567c493630024758a78434b8e (diff) |
Fix a copy-paste error that resulted in the parent directory being
chowned instead of only the symlink.
no objections matthieu
Diffstat (limited to 'lib')
-rw-r--r-- | lib/fontconfig/conf.d/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/fontconfig/conf.d/Makefile b/lib/fontconfig/conf.d/Makefile index f62f3e37b..81733c1f5 100644 --- a/lib/fontconfig/conf.d/Makefile +++ b/lib/fontconfig/conf.d/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.9 2016/10/02 09:19:28 tb Exp $ +# $OpenBSD: Makefile,v 1.10 2016/11/19 08:45:51 tb Exp $ FONTCONFIG = ${.CURDIR}/../../../dist/fontconfig CONFIGDIR = /etc/fonts/conf.d @@ -75,7 +75,7 @@ install: chown -h ${BINOWN}:${BINGRP} $$i; \ rm -f $$i; \ ln -s ${CONFAVAILREL}/$$i .; \ - chown -h ${BINOWN}:${BINGRP} $$i .; \ + chown -h ${BINOWN}:${BINGRP} $$i; \ done) NOOBJ= |