diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2016-10-02 09:19:29 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2016-10-02 09:19:29 +0000 |
commit | 5546d6e8085e27e7c44d21befcdc95036ddc697e (patch) | |
tree | f212f9d7d7d4b14ec0e7136d9c24cbd5326bb965 /lib | |
parent | 42c66f8ea5e7566664de03a5a696887d23ce5b8d (diff) |
chown -h symbolic links in conf.d. Needed for noperm release.
There are a few remaining symlinks that will be fixed later.
ok matthieu
Diffstat (limited to 'lib')
-rw-r--r-- | lib/fontconfig/conf.d/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/fontconfig/conf.d/Makefile b/lib/fontconfig/conf.d/Makefile index 038a7a7e1..f62f3e37b 100644 --- a/lib/fontconfig/conf.d/Makefile +++ b/lib/fontconfig/conf.d/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.8 2015/10/23 12:29:31 naddy Exp $ +# $OpenBSD: Makefile,v 1.9 2016/10/02 09:19:28 tb Exp $ FONTCONFIG = ${.CURDIR}/../../../dist/fontconfig CONFIGDIR = /etc/fonts/conf.d @@ -71,9 +71,11 @@ install: @(echo cd ${DESTDIR}${CONFIGDIR}; \ cd ${DESTDIR}${CONFIGDIR}; \ for i in ${CONF_LINKS}; do \ - echo rm $$i";" ln -s ${CONFAVAILREL}/$$i .; \ + echo rm $$i";" ln -s ${CONFAVAILREL}/$$i . ";" \ + chown -h ${BINOWN}:${BINGRP} $$i; \ rm -f $$i; \ ln -s ${CONFAVAILREL}/$$i .; \ + chown -h ${BINOWN}:${BINGRP} $$i .; \ done) NOOBJ= |