summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--cpukit/ChangeLog4
-rw-r--r--cpukit/wrapup/Makefile.am6
2 files changed, 7 insertions, 3 deletions
diff --git a/cpukit/ChangeLog b/cpukit/ChangeLog
index 4d30e044ef..9d29f22566 100644
--- a/cpukit/ChangeLog
+++ b/cpukit/ChangeLog
@@ -1,3 +1,7 @@
+2002-12-13 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
+
+ * wrapup/Makefile.am: Fix typo in yesterday's patch.
+
2002-12-12 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* wrapup/Makefile.am: Don't create $ARCH.
diff --git a/cpukit/wrapup/Makefile.am b/cpukit/wrapup/Makefile.am
index 90c98227c2..9362b09bbb 100644
--- a/cpukit/wrapup/Makefile.am
+++ b/cpukit/wrapup/Makefile.am
@@ -39,8 +39,8 @@ LIBS += ../libnetworking/wrapup/$(ARCH)/libnetworking.a
endif
if LIBRPC
-LIBS += ../librpc/src/rpc/$(ARCH)/librpc.a
-LIBS += ../librpc/src/xdr/$(ARCH)/libxdr.a
+LIBS += ../librpc/$(ARCH)/librpc.a
+LIBS += ../librpc/$(ARCH)/libxdr.a
endif
$(LIB): ${LIBS}
@@ -79,7 +79,7 @@ TMPINSTALL_FILES += $(project_libdir)$(MULTISUBDIR)/librtemscpu$(LIB_VARIANT).a
all-am: $(ARCH) $(LIB) $(TMPINSTALL_FILES)
install-data-hook: $(LIB)
- $(mkinstalldir) $(DESTDIR)/$(libdir)
+ @$(mkinstalldirs) $(DESTDIR)/$(libdir)
$(INSTALL_DATA) $(LIB) $(DESTDIR)/$(libdir)
include $(top_srcdir)/automake/local.am