summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorNiklas Hallqvist <niklas@cvs.openbsd.org>1996-08-01 01:26:47 +0000
committerNiklas Hallqvist <niklas@cvs.openbsd.org>1996-08-01 01:26:47 +0000
commit3c769e01f363665ee3fe35e97ca2703e892c5a74 (patch)
tree9e5e7e929f34d26bc7bb804e734223eedc6342a7 /gnu
parenta82c8140c72f0f55d9967dc458496992fce2292f (diff)
Resolve import conflicts
Diffstat (limited to 'gnu')
-rw-r--r--gnu/usr.bin/texinfo/Makefile.in12
1 files changed, 6 insertions, 6 deletions
diff --git a/gnu/usr.bin/texinfo/Makefile.in b/gnu/usr.bin/texinfo/Makefile.in
index b19ba6381a9..229ea4d9842 100644
--- a/gnu/usr.bin/texinfo/Makefile.in
+++ b/gnu/usr.bin/texinfo/Makefile.in
@@ -61,7 +61,7 @@ DEFAULT_INFOPATH = $(infodir):.
#### End of system configuration section. ####
-VERSION = 3.6
+VERSION = 3.7
DISTNAME = texinfo-$(VERSION)
# Subdirectories that have makefiles
@@ -81,7 +81,7 @@ all: sub-all texinfo
install: all installdirs
for dir in $(SUBDIRS); do \
echo making $@ in $$dir; \
- (cd $$dir; $(MAKE) $(MDEFINES) $@); \
+ (cd $$dir && $(MAKE) $(MDEFINES) $@ || exit 1); \
done
d=$(srcdir); test -f ./texinfo && d=.; \
(cd $$d; \
@@ -95,7 +95,7 @@ installdirs:
uninstall:
for dir in $(SUBDIRS); do \
echo making $@ in $$dir; \
- (cd $$dir; $(MAKE) $(MDEFINES) $@); \
+ (cd $$dir && $(MAKE) $(MDEFINES) $@ || exit 1); \
done
$(RM) $(infodir)/texinfo $(infodir)/texinfo-*
@@ -111,19 +111,19 @@ configure: configure.in
sub-all TAGS:
for dir in $(SUBDIRS); do \
echo making $@ in $$dir; \
- (cd $$dir; $(MAKE) $(MDEFINES) $@); \
+ (cd $$dir && $(MAKE) $(MDEFINES) $@ || exit 1); \
done
clean mostlyclean:
for dir in $(SUBDIRS); do \
echo making $@ in $$dir; \
- (cd $$dir; $(MAKE) $(MDEFINES) $@); \
+ (cd $$dir && $(MAKE) $(MDEFINES) $@ || exit 1); \
done
distclean: clean texclean
for dir in $(SUBDIRS); do \
echo making $@ in $$dir; \
- (cd $$dir; $(MAKE) $(MDEFINES) $@); \
+ (cd $$dir && $(MAKE) $(MDEFINES) $@ || exit 1); \
done
$(RM) Makefile *.status *.cache *.log texinfo texinfo-? texinfo-??