mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-16 19:50:19 +01:00
62bb40ffda
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
8 lines
190 B
Bash
8 lines
190 B
Bash
#!/bin/sh
|
|
if [ -d /usr/lib64/sane ]; then
|
|
cd /usr/lib64/sane
|
|
ln -vsf libsane-airscan.so.1 libsane-airscan.so
|
|
else
|
|
cd /usr/lib/sane
|
|
ln -vsf libsane-airscan.so.1 libsane-airscan.so
|
|
fi
|