diff options
author | vapier <vapier@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-06-07 17:27:46 +0000 |
---|---|---|
committer | vapier <vapier@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-06-07 17:27:46 +0000 |
commit | 456c065cf8670169e3dcddad6d557fe52ec83bb6 (patch) | |
tree | 9f7d681e71a790b00f76eec92bf58f4b0bb4b056 | |
parent | 2a471e3083775194ab0db25fe6eccca1142ab789 (diff) | |
download | busybox-w32-456c065cf8670169e3dcddad6d557fe52ec83bb6.tar.gz busybox-w32-456c065cf8670169e3dcddad6d557fe52ec83bb6.tar.bz2 busybox-w32-456c065cf8670169e3dcddad6d557fe52ec83bb6.zip |
dont install emtpy libdirs
git-svn-id: svn://busybox.net/trunk/busybox@15318 69ca8d6d-28ef-0310-b511-8ec308f3f277
-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 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;; |
17 | esac | 17 | esac |
18 | 18 | ||
19 | if [ "$DO_INSTALL_LIBS" != "n" ]; then | 19 | if [ -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 | \ |