2001-01-05 Ralf Corsepius <corsepiu@faw.uni-ulm.de>

* Makefile.am: Remove subshell from *.a processing in librtemsall.a
	rule.
This commit is contained in:
Joel Sherrill
2001-01-05 13:40:42 +00:00
parent 60391a2c16
commit ec5afe01a5
2 changed files with 9 additions and 4 deletions

View File

@@ -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.

View File

@@ -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