aboutsummaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorJohn Gilmore <gnu@cygnus>1991-05-31 12:34:55 +0000
committerJohn Gilmore <gnu@cygnus>1991-05-31 12:34:55 +0000
commit6849cb71830f9d37014a8c039937d5be9e4fc991 (patch)
tree551cc112ea06a9012aac4b374fb668d22a7e3d53 /Makefile.in
parent137a7f11191773e9e70f36edc4d27a2199b88a9a (diff)
downloadgdb-6849cb71830f9d37014a8c039937d5be9e4fc991.zip
gdb-6849cb71830f9d37014a8c039937d5be9e4fc991.tar.gz
gdb-6849cb71830f9d37014a8c039937d5be9e4fc991.tar.bz2
Avoid error stop from Make if a directory doesn't exist during subdir_do.
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in29
1 files changed, 16 insertions, 13 deletions
diff --git a/Makefile.in b/Makefile.in
index b06a009..0d4f789 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -28,18 +28,18 @@ all:
subdir_do: force
for i in $(DODIRS); \
do \
- if [ -d $(srcdir)/$$i -o -d $(srcdir)/$$i.$(target) ] ; then \
- if (cd $(srcdir)/$$i`if [ -d $(srcdir)/$$i.$(target) ] ; \
- then echo .$(target) ; fi`$(subdir); \
- $(MAKE) \
- "destdir=$(destdir)" \
- "AR=$(AR)" \
- "AR_FLAGS=$(AR_FLAGS)" \
- "RANLIB=$(RANLIB)" $(DO)) ; \
- then true ; \
- else exit 1 ; \
- fi ;\
- fi ; \
+ if [ -d $(srcdir)/$$i -o -d $(srcdir)/$$i.$(target) ] ; then \
+ if (cd $(srcdir)/$$i`if [ -d $(srcdir)/$$i.$(target) ] ; \
+ then echo .$(target) ; fi`$(subdir); \
+ $(MAKE) \
+ "destdir=$(destdir)" \
+ "AR=$(AR)" \
+ "AR_FLAGS=$(AR_FLAGS)" \
+ "RANLIB=$(RANLIB)" $(DO)) ; \
+ then true ; \
+ else exit 1 ; \
+ fi ;\
+ else true; fi ; \
done
bootstrap:
@@ -132,7 +132,10 @@ Makefile: $(srcdir)/Makefile.in $(srcdir)/configure
#
# $Log$
-# Revision 1.13 1991/05/27 23:03:20 rich
+# Revision 1.14 1991/05/31 12:34:55 gnu
+# Avoid error stop from Make if a directory doesn't exist during subdir_do.
+#
+# Revision 1.13 1991/05/27 23:03:20 rich
# Put gcc/gstdarg.h where gas can find it; gas/stdarg.h.
#
# Revision 1.12 1991/05/19 00:36:44 rich