|
|
|
@ -643,7 +643,7 @@ class BuildKControlModule(Command):
|
|
|
|
|
if self.clib!=None:
|
|
|
|
|
self.clib = glob.glob(os.path.join(self.clib,'libgcc*.a'))[0]
|
|
|
|
|
if self.clib is None:
|
|
|
|
|
raise SystemExit, "Failed to find a suitable libgcc library"
|
|
|
|
|
raise SystemExit, "kdedistutils.py (1): Failed to find a suitable libgcc library"
|
|
|
|
|
self.announce("Using %s for clib" % self.clib)
|
|
|
|
|
|
|
|
|
|
# Make a list of places to look for python .so modules
|
|
|
|
@ -1558,7 +1558,7 @@ class BuildKioslave(Command):
|
|
|
|
|
if self.clib!=None:
|
|
|
|
|
self.clib = glob.glob(os.path.join(self.clib,'libgcc*.a'))[0]
|
|
|
|
|
if self.clib is None:
|
|
|
|
|
raise SystemExit, "Failed to find a suitable libgcc library"
|
|
|
|
|
raise SystemExit, "kdedistutils.py (2): Failed to find a suitable libgcc library"
|
|
|
|
|
self.announce("Using %s for clib" % self.clib)
|
|
|
|
|
|
|
|
|
|
# Make a list of places to look for python .so modules
|
|
|
|
@ -2196,7 +2196,7 @@ def compile_qtdesigner(ui_files,
|
|
|
|
|
|
|
|
|
|
###########################################################################
|
|
|
|
|
def get_libdir_name():
|
|
|
|
|
#if os.uname()[4] in ['x86_64','mips64','ppc64','sparc64','s390x']:
|
|
|
|
|
# return 'lib64'
|
|
|
|
|
#else:
|
|
|
|
|
if os.uname()[4] in ['x86_64','mips64','ppc64','sparc64','s390x']:
|
|
|
|
|
return 'lib64'
|
|
|
|
|
else:
|
|
|
|
|
return 'lib'
|
|
|
|
|