diff options
-rwxr-xr-x | applets/install.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/applets/install.sh b/applets/install.sh index 9b00c63..8bf4886 100755 --- a/applets/install.sh +++ b/applets/install.sh @@ -16,7 +16,7 @@ case "$2" in *) echo "Unknown install option: $2"; exit 1;; esac -if [ "$DO_INSTALL_LIBS" != "n" ]; then +if [ -n "$DO_INSTALL_LIBS" ] && [ "$DO_INSTALL_LIBS" != "n" ]; then # get the target dir for the libs # assume it starts with lib libdir=$($CC -print-file-name=libc.so | \ |