summaryrefslogtreecommitdiffstats
path: root/c/src/wrapup
diff options
context:
space:
mode:
Diffstat (limited to 'c/src/wrapup')
-rw-r--r--c/src/wrapup/ChangeLog5
-rw-r--r--c/src/wrapup/Makefile.am8
2 files changed, 9 insertions, 4 deletions
diff --git a/c/src/wrapup/ChangeLog b/c/src/wrapup/ChangeLog
index e1ef659805..5891fe34bb 100644
--- a/c/src/wrapup/ChangeLog
+++ b/c/src/wrapup/ChangeLog
@@ -1,3 +1,8 @@
+2001-01-05 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
+
+ * Makefile.am: Remove subshell from *.a processing in librtemsall.a
+ rule.
+
2000-11-09 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* Makefile.am: Use ... instead of RTEMS_TOPdir in ACLOCAL_AMFLAGS.
diff --git a/c/src/wrapup/Makefile.am b/c/src/wrapup/Makefile.am
index c0969328a4..b4e6f287fe 100644
--- a/c/src/wrapup/Makefile.am
+++ b/c/src/wrapup/Makefile.am
@@ -60,10 +60,10 @@ $(LIB): $(SRCS)
fi; \
;; \
*.a) \
- (cd $(ARCH); \
- $(AR) x ../$$f; \
- test $$? -eq 0 || exit 1; \
- chmod a-w *; ) \
+ cd $(ARCH); \
+ $(AR) xv ../$$f || exit 1; \
+ chmod a-w * ; \
+ cd ..; \
;; \
esac; \
done