blob: 31771ed9e6b9c49bde158cd3c192103c206059d0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
#!/bin/sh
# $FreeBSD$
#
# Submit missing XDG-file locations to kde@freebsd.org!
XDG_CONFIG_DIRS=\
${XDG_CONFIG_DIRS}:/etc/xdg:%%LOCALBASE%%/etc/xdg:%%LOCALBASE%%/etc/xdg/xfce4
if [ %%KDE_PREFIX%% != %%LOCALBASE%% ]; then
XDG_CONFIG_DIRS=${XDG_CONFIG_DIRS}:%%KDE_PREFIX%%/etc/xdg
fi
export XDG_CONFIG_DIRS
XDG_DATA_DIRS=\
${XDG_DATA_DIRS}:/usr/share:%%LOCALBASE%%/share:%%LOCALBASE%%/share/gnome
if [ %%KDE_PREFIX%% != %%LOCALBASE%% ]; then
XDG_DATA_DIRS=${XDG_DATA_DIRS}:%%KDE_PREFIX%%/share
fi
export XDG_DATA_DIRS
kbuildsycoca
|