diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-07-17 00:52:04 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-07-17 00:52:04 +0000 |
commit | df6add6279d3ad5b92b143f8781bec329f8c659c (patch) | |
tree | 610ff10f4967583f69d30d4d8f5a893951569621 /Makefile | |
parent | 3bb075634b78b854510807448b8939d98830a4d7 (diff) |
Some cleanups needed for things to compile and work as expected
with the new build system...
-Erik
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -209,10 +209,10 @@ ifeq ($(LDSO_PRESENT),$(TARGET_ARCH)) install -m 755 lib/ld-uClibc-0.9.5.so $(DEVEL_PREFIX)/lib install -m 755 ldso/util/ldd $(DEVEL_PREFIX)/bin install -m 755 ldso/util/ldconfig $(DEVEL_PREFIX)/bin - install -d $(PREFIX)/bin - ln -fs $(DEVEL_PREFIX)/bin/ldd $(PREFIX)/bin/$(TARGET_ARCH)-uclibc-ldd - install -d $(PREFIX)/sbin - ln -fs $(DEVEL_PREFIX)/sbin/ldconfig $(PREFIX)/sbin/$(TARGET_ARCH)-uclibc-ldconfig + install -d $(TARGET_PREFIX)/bin + ln -fs $(DEVEL_PREFIX)/bin/ldd $(TARGET_PREFIX)/bin/$(TARGET_ARCH)-uclibc-ldd + install -d $(TARGET_PREFIX)/sbin + ln -fs $(DEVEL_PREFIX)/sbin/ldconfig $(TARGET_PREFIX)/sbin/$(TARGET_ARCH)-uclibc-ldconfig endif endif |