Blame 0006-shell-assume-shell-plugins-are-in-etc.patch

fd9a929
diff --git a/conda/activate.py b/conda/activate.py
999f1f9
index e1b1812..567140f 100644
fd9a929
--- a/conda/activate.py
fd9a929
+++ b/conda/activate.py
999f1f9
@@ -825,7 +825,7 @@ class PosixActivator(_Activator):
fd9a929
         self.set_var_tmpl = "%s='%s'"
fd9a929
         self.run_script_tmpl = '. "%s"'
fd9a929
 
fd9a929
-        self.hook_source_path = join(CONDA_PACKAGE_ROOT, 'shell', 'etc', 'profile.d', 'conda.sh')
fd9a929
+        self.hook_source_path = '/etc/profile.d/conda.sh'
fd9a929
 
fd9a929
         super(PosixActivator, self).__init__(arguments)
fd9a929
 
999f1f9
@@ -882,7 +882,7 @@ class CshActivator(_Activator):
fd9a929
         self.set_var_tmpl = "set %s='%s'"
fd9a929
         self.run_script_tmpl = 'source "%s"'
fd9a929
 
fd9a929
-        self.hook_source_path = join(CONDA_PACKAGE_ROOT, 'shell', 'etc', 'profile.d', 'conda.csh')
fd9a929
+        self.hook_source_path = '/etc/profile.d/conda.csh'
fd9a929
 
fd9a929
         super(CshActivator, self).__init__(arguments)
fd9a929
 
999f1f9
@@ -993,8 +993,7 @@ class FishActivator(_Activator):
fd9a929
         self.set_var_tmpl = 'set -g %s "%s"'
fd9a929
         self.run_script_tmpl = 'source "%s"'
fd9a929
 
fd9a929
-        self.hook_source_path = join(CONDA_PACKAGE_ROOT, 'shell', 'etc', 'fish', 'conf.d',
fd9a929
-                                     'conda.fish')
fd9a929
+        self.hook_source_path = '/etc/fish/conf.d/conda.fish'
fd9a929
 
fd9a929
         super(FishActivator, self).__init__(arguments)
fd9a929