diff options
author | jmmv <jmmv> | 2004-02-18 11:22:08 +0000 |
---|---|---|
committer | jmmv <jmmv> | 2004-02-18 11:22:08 +0000 |
commit | 4dcbc51eafc5a7593e212798c3eb1701aea906fb (patch) | |
tree | 2fb036a287a9b286a3625b680d2ad12e8d5ce09f /devel/GConf | |
parent | 3b49c66114a9fbfe34744569bc92838a96fdb3ed (diff) | |
download | pkgsrc-4dcbc51eafc5a7593e212798c3eb1701aea906fb.tar.gz |
Remove etc/gconf/gconf.xml{defaults,mandatory} iff they are empty, as they
may be shared with GConf2 in some scenarios.
Diffstat (limited to 'devel/GConf')
-rw-r--r-- | devel/GConf/PLIST | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/devel/GConf/PLIST b/devel/GConf/PLIST index 3b41de13a1e..b0ff6f44677 100644 --- a/devel/GConf/PLIST +++ b/devel/GConf/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.13 2002/12/09 16:01:16 tron Exp $ +@comment $NetBSD: PLIST,v 1.14 2004/02/18 11:22:08 jmmv Exp $ bin/gconf-config bin/gconf-config-1 bin/gconf-sanity-check-1 @@ -76,9 +76,9 @@ ${PKGLOCALEDIR}/locale/zh_CN/LC_MESSAGES/GConf.mo @unexec ${RMDIR} %D/include/gconf 2>/dev/null || ${TRUE} @dirrm etc/gconf/schemas @exec ${MKDIR} %D/etc/gconf/gconf.xml.mandatory -@dirrm etc/gconf/gconf.xml.mandatory +@unexec ${RMDIR} %D/etc/gconf/gconf.xml.mandatory 2>/dev/null || ${TRUE} @exec ${MKDIR} %D/etc/gconf/gconf.xml.defaults -@dirrm etc/gconf/gconf.xml.defaults +@unexec ${RMDIR} %D/etc/gconf/gconf.xml.defaults 2>/dev/null || ${TRUE} @dirrm etc/gconf/1 @unexec ${RMDIR} %D/etc/gconf 2>/dev/null || ${TRUE} @exec test %D = ${LOCALBASE} || ln -s %D/share/aclocal/gconf-1.m4 ${LOCALBASE}/share/aclocal/gconf-1.m4 |