summaryrefslogtreecommitdiff
path: root/app-portage/sisyphus/files/3e34420beb774d76d1f3e6b4ed0efd2c3c5b3e65.patch
blob: b817acbc28dd41ced94170f6bb4c49e7c7fe9bb3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
diff --git a/src/backend/libsisyphus.py b/src/backend/libsisyphus.py
index 1d05b8c..1f15140 100755
--- a/src/backend/libsisyphus.py
+++ b/src/backend/libsisyphus.py
@@ -28,7 +28,6 @@ def checkRoot():
 
 def checkSystemMode():
     portage_binmode_make_conf = '/opt/redcore-build/conf/intel/portage/make.conf.amd64-binmode'
-    portage_mixedmode_make_conf = '/opt/redcore-build/conf/intel/portage/make.conf.amd64-mixedmode'
     portage_make_conf_symlink = '/etc/portage/make.conf'
 
     if not os.path.islink(portage_make_conf_symlink):
@@ -37,10 +36,8 @@ def checkSystemMode():
     else:
         if os.path.realpath(portage_make_conf_symlink) == portage_binmode_make_conf:
             pass
-        elif os.path.realpath(portage_make_conf_symlink) == portage_mixedmode_make_conf:
-            pass
         else:
-            print("\nThe system is not set to binmode or mixedmode, refusing to run!\n")
+            print("\nThe system is not set to binmode, refusing to run!\n")
             sys.exit(1)
 
 # get current mirror information, so we know where we download from (CLI + GUI frontend)