diff options
Diffstat (limited to 'extra')
-rw-r--r-- | extra/rarian/Pkgfile | 2 | ||||
-rw-r--r-- | extra/rarian/user-segfault.patch | 15 |
2 files changed, 1 insertions, 16 deletions
diff --git a/extra/rarian/Pkgfile b/extra/rarian/Pkgfile index 47532cd9f..470cf6fad 100644 --- a/extra/rarian/Pkgfile +++ b/extra/rarian/Pkgfile @@ -8,7 +8,7 @@ name=rarian version=0.8.1 release=1 source=(http://ftp.gnome.org/pub/gnome/sources/rarian/0.8/$name-$version.tar.bz2 \ - user-segfault.patch) + http://nutyx.meticul.eu/files/patchs/$name/user-segfault.patch) build() { cd $name-$version diff --git a/extra/rarian/user-segfault.patch b/extra/rarian/user-segfault.patch deleted file mode 100644 index 40bcc4854..000000000 --- a/extra/rarian/user-segfault.patch +++ /dev/null @@ -1,15 +0,0 @@ ---- util/rarian-sk-get-cl.cpp~ 2008-07-28 19:23:28.000000000 +0200 -+++ util/rarian-sk-get-cl.cpp 2008-07-28 19:23:28.000000000 +0200 -@@ -160,6 +160,11 @@ - { - char *filename = NULL; - char *user = getenv ("USERNAME"); -+ -+ if (user == NULL) { -+ user = getenv ("USER"); -+ } -+ - char *basepath = NULL; - int i=0; - int last = 0; - |