mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-25 10:03:03 +01:00
11 lines
145 B
Bash
11 lines
145 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
if [ $(uname -m) = "x86_64" ]; then
|
||
|
LIBDIRSUFFIX="64"
|
||
|
else
|
||
|
LIBDIRSUFFIX=""
|
||
|
fi
|
||
|
|
||
|
export SBCL_HOME=/usr/lib${LIBDIRSUFFIX}/sbcl
|
||
|
|