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