summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Rößler2013-09-10 16:09:04 +0200
committerChristian Rößler2013-09-10 16:09:04 +0200
commit892c1567a81b11243427d9fed141dc17bc345d45 (patch)
tree9a45e260002c91f0f812d080e447bb67c0eadb09
parent[vbox] Standardization for run-virt (diff)
downloadtm-scripts-892c1567a81b11243427d9fed141dc17bc345d45.tar.gz
tm-scripts-892c1567a81b11243427d9fed141dc17bc345d45.tar.xz
tm-scripts-892c1567a81b11243427d9fed141dc17bc345d45.zip
[system.inc] Path variable LIB64 now generalized usable (dep. on $SYS_DISTRIBUTION)
-rw-r--r--helper/system.inc7
1 files changed, 6 insertions, 1 deletions
diff --git a/helper/system.inc b/helper/system.inc
index 7a9f8954..1d2bdf06 100644
--- a/helper/system.inc
+++ b/helper/system.inc
@@ -21,7 +21,12 @@ export MAKEFLAGS="-j$CPU_CORES"
# Determine if we have lib64
if [ "$(uname -m)x" = "x86_64x" ]; then
- LIB64="lib64"
+ # Setting LIB64, as openSuse differentiates but Ubuntu does not:
+ case $SYS_DISTRIBUTION in
+ ubuntu | debian) LIB64="lib" ;;
+ opensuse) LIB64="lib64" ;;
+ *) pwarning "Cannot set LIB64, SYS_DISTRIBUTION: $SYS_DISTRIBUTION unknown / not set!" ;;
+ esac
AMD64_I386=amd64
X86_64_I586=x86_64
AMD64_X86=amd64