diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-03-19 23:32:00 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-03-19 23:32:00 +0000 |
commit | da26328fbdf34c5ef443531032f018b857b454aa (patch) | |
tree | 6a6164e2df539b98c6dd63e1c2cd17aa9d9680bf | |
parent | 4cc6f73f6773de51a26309ec1bf75ea8ce12a2ee (diff) |
Seems most folks don't have /sbin in their path
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -116,7 +116,7 @@ install: rm -f $(INSTALL_DIR)/lib/libuClibc.so; \ ln -s $(INSTALL_DIR)/lib/$(SHARED_NAME) \ $(INSTALL_DIR)/lib/libuClibc.so; \ - ldconfig; \ + /sbin/ldconfig; \ fi; @if [ "$(HAS_MMU)" = "false" ] ; then \ set -x; \ |