]> code.delx.au - gnu-emacs/blobdiff - Makefile.in
(reset-language-environment): Reset coding-category-utf-8 to
[gnu-emacs] / Makefile.in
index 17a00af4f759c0e0a3ec1f0ad31e4934a0192c91..863d04c96edd9041d4e83846cec1e8bf3dc1389c 100644 (file)
@@ -338,7 +338,8 @@ install-arch-indep: mkdir info
          && [ `(cd $${dir} && /bin/pwd)` != `(cd $${dest} && /bin/pwd)` ] \
          && (echo "Copying $${dir} to $${dest}..." ; \
              (cd $${dir}; tar -cf - . ) \
-               |(cd $${dest};umask 022; tar -xvf - && cat > /dev/null); \
+               | (cd $${dest}; umask 022; \
+                   tar -xvf - && cat > /dev/null) || exit 1; \
              for subdir in `find $${dest} -type d ! -name RCS ! -name CVS -print` ; do \
                chmod a+rx $${subdir} ; \
                rm -rf $${subdir}/RCS ; \
@@ -375,7 +376,7 @@ install-arch-indep: mkdir info
        then \
           echo "Copying etc/DOC-* to ${docdir} ..." ; \
           (cd ./etc; tar -cf - DOC*) \
-            |(cd ${docdir}; umask 0; tar -xvf - && cat > /dev/null); \
+            |(cd ${docdir}; umask 0; tar -xvf - && cat > /dev/null) || exit 1; \
           (cd $(docdir); chmod a+r DOC*; rm DOC); \
        else true; fi
        -unset CDPATH; \
@@ -386,7 +387,7 @@ install-arch-indep: mkdir info
        then \
           echo "Copying lisp/*.el and lisp/*.elc to ${lispdir} ..." ; \
           (cd lisp; tar -cf - *.el *.elc) \
-            |(cd ${lispdir}; umask 0; tar -xvf - && cat > /dev/null); \
+            |(cd ${lispdir}; umask 0; tar -xvf - && cat > /dev/null) || exit 1; \
        else true; fi
        -unset CDPATH; \
        thisdir=`/bin/pwd`; \
@@ -603,9 +604,9 @@ relock:
        (cd lwlib; chmod u+w *.[ch] Makefile README)
        (cd src; $(MAKE) $(MFLAGS) relock)
 
-TAGS tags:     lib-src src
-       # The src subdir knows how to do the right thing
-       # even when the build directory and source dir are different.
+# The src subdir knows how to do the right thing
+# even when the build directory and source dir are different.
+TAGS tags: lib-src src
        cd src; $(MAKE) tags
 
 check:
@@ -616,10 +617,10 @@ dist:
 
 .PHONY: info dvi dist check html
 force-info:
+# Note that man/Makefile knows how to
+# put the info files in $(srcdir),
+# so we can do ok running make in the build dir.
 info: force-info
-       # Note that man/Makefile knows how to
-       # put the info files in $(srcdir),
-       # so we can do ok running make in the build dir.
        (cd man; $(MAKE) $(MFLAGS) info)
 dvi:
        (cd man; $(MAKE) $(MFLAGS) dvi)