mirror of
https://github.com/doublecmd/doublecmd.git
synced 2026-06-21 09:58:13 +00:00
FIX: Library path under x86_64
This commit is contained in:
parent
7c07bb2d08
commit
54e0e76324
1 changed files with 6 additions and 1 deletions
|
|
@ -1,7 +1,12 @@
|
|||
#!/bin/bash
|
||||
|
||||
# Set processor architecture
|
||||
if [ -z $CPU_TARGET ]; then
|
||||
export CPU_TARGET=$(fpc -iTP)
|
||||
fi
|
||||
|
||||
# Determine library directory
|
||||
if [ "$CPU_TARGET" = "x86_64" ]
|
||||
if [ "$CPU_TARGET" = "x86_64" ] && [ ! -f "/etc/debian_version" ]
|
||||
then
|
||||
OS_LIB_DIR=usr/lib64
|
||||
else
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue