From d9b3b62d7bd6ae9e4887cbc0c385f8837f84c3f1 Mon Sep 17 00:00:00 2001 From: Ludwig Nussel Date: Wed, 4 Jul 2012 09:41:20 +0000 Subject: [PATCH] remove obsolete file OBS-URL: https://build.opensuse.org/package/show/Base:System/aaa_base?expand=0&rev=377 --- aaa_base-bnc756012.patch | 70 ---------------------------------------- 1 file changed, 70 deletions(-) delete mode 100644 aaa_base-bnc756012.patch diff --git a/aaa_base-bnc756012.patch b/aaa_base-bnc756012.patch deleted file mode 100644 index 7d54678..0000000 --- a/aaa_base-bnc756012.patch +++ /dev/null @@ -1,70 +0,0 @@ -Index: files/etc/profile.d/profile.csh -=================================================================== ---- files/etc/profile.d/profile.csh.orig -+++ files/etc/profile.d/profile.csh -@@ -50,23 +50,23 @@ foreach line ( "`/bin/grep -vh '^#' $sys - set proxy_enabled=${val:q} - breaksw - case HTTP_PROXY=*: -- if (! ${%val} ) continue -+ if (! ${%proxy_enabled} == yes ) continue - setenv http_proxy ${val:q} - breaksw - case HTTPS_PROXY=*: -- if (! ${%val} ) continue -+ if (! ${%proxy_enabled} == yes ) continue - setenv https_proxy ${val:q} - breaksw - case FTP_PROXY=*: -- if (! ${%val} ) continue -+ if (! ${%proxy_enabled} == yes ) continue - setenv ftp_proxy ${val:q} - breaksw - case GOPHER_PROXY=*: -- if (! ${%val} ) continue -+ if (! ${%proxy_enabled} == yes ) continue - setenv gopher_proxy ${val:q} - breaksw - case NO_PROXY=*: -- if (! ${%val} ) continue -+ if (! ${%proxy_enabled} == yes ) continue - setenv no_proxy ${val:q} - breaksw - case DEFAULT_WM=*: -Index: files/etc/profile.d/profile.sh -=================================================================== ---- files/etc/profile.d/profile.sh.orig -+++ files/etc/profile.d/profile.sh -@@ -45,27 +45,27 @@ do - PROXY_ENABLED="${val}" - ;; - HTTP_PROXY=*) -- test -n "$val" || continue -+ test "$PROXY_ENABLED" = "yes" || continue - http_proxy="${val}" - export http_proxy - ;; - HTTPS_PROXY=*) -- test -n "$val" || continue -+ test "$PROXY_ENABLED" = "yes" || continue - https_proxy="${val}" - export https_proxy - ;; - FTP_PROXY=*) -- test -n "$val" || continue -+ test "$PROXY_ENABLED" = "yes" || continue - ftp_proxy="${val}" - export ftp_proxy - ;; - GOPHER_PROXY=*) -- test -n "$val" || continue -+ test "$PROXY_ENABLED" = "yes" || continue - gopher_proxy="${val}" - export gopher_proxy - ;; - NO_PROXY=*) -- test -n "$val" || continue -+ test "$PROXY_ENABLED" = "yes" || continue - no_proxy="${val}" - export no_proxy - NO_PROXY="${val}"