Bug on new aaa_libraries.SlackBuild
by lucabon from LinuxQuestions.org on (#5R94V)
Hello,
in the new (Oct 26th) -current aaa_libraries.SlackBuild, it seems there is a bug when checking for library existence:
# OLD CHECK:
[ ! -e $library ] && exit 0
# NEW CHECK:
if [ ! -e $library ]; then
echo "WARNING: $library not found"
sleep 10
fi
I think an "exit 0" is missing after "sleep 10". If a library does not exist (such as libhistory.6 or libhistory.7 if build from scratch), it starts to copy the whole /usr/lib64 directory into "package-aaa_libraries"....
Luca
in the new (Oct 26th) -current aaa_libraries.SlackBuild, it seems there is a bug when checking for library existence:
# OLD CHECK:
[ ! -e $library ] && exit 0
# NEW CHECK:
if [ ! -e $library ]; then
echo "WARNING: $library not found"
sleep 10
fi
I think an "exit 0" is missing after "sleep 10". If a library does not exist (such as libhistory.6 or libhistory.7 if build from scratch), it starts to copy the whole /usr/lib64 directory into "package-aaa_libraries"....
Luca