diff options
author | lofi <lofi@FreeBSD.org> | 2007-07-18 07:04:22 +0800 |
---|---|---|
committer | lofi <lofi@FreeBSD.org> | 2007-07-18 07:04:22 +0800 |
commit | 7d071cb5af33505fab86a2e67ec8f6e9c575f58b (patch) | |
tree | bcabfce08e8203de3212c8b7c8f9d0d5b99a38a1 /misc | |
parent | ee3ff17619b1f762505495ef072cce56abc23cc8 (diff) | |
download | freebsd-ports-graphics-7d071cb5af33505fab86a2e67ec8f6e9c575f58b.tar.gz freebsd-ports-graphics-7d071cb5af33505fab86a2e67ec8f6e9c575f58b.tar.zst freebsd-ports-graphics-7d071cb5af33505fab86a2e67ec8f6e9c575f58b.zip |
Remove duplicate path element from XDG_*_DIRS to avoid crashes in Firefox.
PR: ports/114678
Submitted by: Mark Hobden <markhobden@gmail.com>
Diffstat (limited to 'misc')
-rw-r--r-- | misc/kde-xdg-env/Makefile | 2 | ||||
-rw-r--r-- | misc/kde-xdg-env/files/xdg-env.sh.in | 6 | ||||
-rw-r--r-- | misc/kde4-xdg-env/Makefile | 2 | ||||
-rw-r--r-- | misc/kde4-xdg-env/files/xdg-env.sh.in | 6 |
4 files changed, 6 insertions, 10 deletions
diff --git a/misc/kde-xdg-env/Makefile b/misc/kde-xdg-env/Makefile index f5ba6eef59d..44afb4e880c 100644 --- a/misc/kde-xdg-env/Makefile +++ b/misc/kde-xdg-env/Makefile @@ -7,7 +7,7 @@ PORTNAME= xdg PORTVERSION= 1.0 -PORTREVISION= 2 +PORTREVISION= 3 PORTEPOCH= 1 CATEGORIES= misc kde MASTER_SITES= # none diff --git a/misc/kde-xdg-env/files/xdg-env.sh.in b/misc/kde-xdg-env/files/xdg-env.sh.in index 394d578ae71..31771ed9e6b 100644 --- a/misc/kde-xdg-env/files/xdg-env.sh.in +++ b/misc/kde-xdg-env/files/xdg-env.sh.in @@ -5,8 +5,7 @@ # Submit missing XDG-file locations to kde@freebsd.org! XDG_CONFIG_DIRS=\ -${XDG_CONFIG_DIRS}:/etc/xdg:%%LOCALBASE%%/etc/xdg:%%X11BASE%%/etc/xdg:\ -%%LOCALBASE%%/etc/xdg/xfce4 +${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 @@ -15,8 +14,7 @@ fi export XDG_CONFIG_DIRS XDG_DATA_DIRS=\ -${XDG_DATA_DIRS}:/usr/share:%%LOCALBASE%%/share:%%LOCALBASE%%/share/gnome:\ -%%X11BASE%%/share:%%X11BASE%%/share/gnome +${XDG_DATA_DIRS}:/usr/share:%%LOCALBASE%%/share:%%LOCALBASE%%/share/gnome if [ %%KDE_PREFIX%% != %%LOCALBASE%% ]; then XDG_DATA_DIRS=${XDG_DATA_DIRS}:%%KDE_PREFIX%%/share diff --git a/misc/kde4-xdg-env/Makefile b/misc/kde4-xdg-env/Makefile index f5ba6eef59d..44afb4e880c 100644 --- a/misc/kde4-xdg-env/Makefile +++ b/misc/kde4-xdg-env/Makefile @@ -7,7 +7,7 @@ PORTNAME= xdg PORTVERSION= 1.0 -PORTREVISION= 2 +PORTREVISION= 3 PORTEPOCH= 1 CATEGORIES= misc kde MASTER_SITES= # none diff --git a/misc/kde4-xdg-env/files/xdg-env.sh.in b/misc/kde4-xdg-env/files/xdg-env.sh.in index 394d578ae71..31771ed9e6b 100644 --- a/misc/kde4-xdg-env/files/xdg-env.sh.in +++ b/misc/kde4-xdg-env/files/xdg-env.sh.in @@ -5,8 +5,7 @@ # Submit missing XDG-file locations to kde@freebsd.org! XDG_CONFIG_DIRS=\ -${XDG_CONFIG_DIRS}:/etc/xdg:%%LOCALBASE%%/etc/xdg:%%X11BASE%%/etc/xdg:\ -%%LOCALBASE%%/etc/xdg/xfce4 +${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 @@ -15,8 +14,7 @@ fi export XDG_CONFIG_DIRS XDG_DATA_DIRS=\ -${XDG_DATA_DIRS}:/usr/share:%%LOCALBASE%%/share:%%LOCALBASE%%/share/gnome:\ -%%X11BASE%%/share:%%X11BASE%%/share/gnome +${XDG_DATA_DIRS}:/usr/share:%%LOCALBASE%%/share:%%LOCALBASE%%/share/gnome if [ %%KDE_PREFIX%% != %%LOCALBASE%% ]; then XDG_DATA_DIRS=${XDG_DATA_DIRS}:%%KDE_PREFIX%%/share |