diff options
author | Christian Rößler | 2013-09-10 17:02:43 +0200 |
---|---|---|
committer | Jonathan Bauer | 2013-09-30 13:22:06 +0200 |
commit | 8c79740f03213de1c806bba65a9d2839df9f26f4 (patch) | |
tree | 59d2c46adc157db454ad0642ad620fd577dfba9c /helper | |
parent | [system.inc] now self-detects SYS_DISTRIBUTION as not being reliably sourced. (diff) | |
download | tm-scripts-8c79740f03213de1c806bba65a9d2839df9f26f4.tar.gz tm-scripts-8c79740f03213de1c806bba65a9d2839df9f26f4.tar.xz tm-scripts-8c79740f03213de1c806bba65a9d2839df9f26f4.zip |
[system.inc] Forgot to reinstate perror for pwarning ...
Diffstat (limited to 'helper')
-rw-r--r-- | helper/system.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/helper/system.inc b/helper/system.inc index 606ef406..defa5c98 100644 --- a/helper/system.inc +++ b/helper/system.inc @@ -26,7 +26,7 @@ if [ "$(uname -m)x" = "x86_64x" ]; then case $SYS_DISTRIBUTION in ubuntu | debian) LIB64="lib" ;; opensuse) LIB64="lib64" ;; - *) pwarning "Cannot set LIB64, SYS_DISTRIBUTION: $SYS_DISTRIBUTION unknown!" ;; + *) perror "Cannot set LIB64, SYS_DISTRIBUTION: $SYS_DISTRIBUTION unknown!" ;; esac AMD64_I386=amd64 X86_64_I586=x86_64 |