]> sourceware.org Git - automake.git/commitdiff
Run installcheck target from distcheck
authorTom Tromey <tromey@redhat.com>
Thu, 23 May 1996 16:17:03 +0000 (16:17 +0000)
committerTom Tromey <tromey@redhat.com>
Thu, 23 May 1996 16:17:03 +0000 (16:17 +0000)
ChangeLog
NEWS
automake.in
configure
configure.in
version.texi

index 350014e389574559d26cc37f0bdc27661c8570f0..a3d46900a310055eecd5debca02bf9753497bea3 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,8 +1,17 @@
 Thu May 23 10:01:13 1996  Tom Tromey  <tromey@creche.cygnus.com>
 
+       * automake.in (handle_dist): Run installcheck target from
+       distcheck.
+
+       * configure.in (VERSION): Upped to 0.34.
+
        * automake.in (scan_configure): Always allow upgrading to
        fp_PROG_INSTALL.  Test fpinstall.test.
 
+Wed May 22 14:45:28 1996  Joshua Cowan  <jcowan@hermit.reslife.okstate.edu>
+
+       (handle_dist): Make `distcheck' check `install' target, too.
+
 Wed May 22 09:49:27 1996  Tom Tromey  <tromey@creche.cygnus.com>
 
        * automake.in (initialize_per_input): Don't initialize
diff --git a/NEWS b/NEWS
index 25afd45f5f77e67c0bbbddafcae687ac139ebba7..1f67887c7b0307bbd7da56c679d757f8c690b276 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,7 @@
+New in 0.34:
+* Bug fixes
+* distcheck target runs install and installcheck targets
+\f
 New in 0.33:
 * More bug fixes
 * More checking
index 66ac2b1fadc236cda1c025fa0570f5bb2ce1c8cc..8abc526d5c361e3302ac5840f2da4ca39926c7cc 100755 (executable)
@@ -1252,11 +1252,15 @@ sub handle_dist
 distcheck: dist
        rm -rf $(distdir)
        $(TAR) zxf $(distdir).tar.gz
-       mkdir $(distdir)/$(distdir)
-       cd $(distdir)/$(distdir) \\
-         && ../configure --srcdir=.. \\
+       mkdir $(distdir)/=build
+       mkdir $(distdir)/=inst
+       dc_install_base=`cd $(distdir)/=inst && pwd`; \\
+       cd $(distdir)/=build \\
+         && ../configure --srcdir=.. --prefix=$$dc_install_base \\
          && $(MAKE) \\
          && $(MAKE) check \\
+         && $(MAKE) install \\
+         && $(MAKE) installcheck \\
          && $(MAKE) dist
        rm -rf $(distdir)
        @echo "========================"; \\
index f60eb2564e37e42742957e8781a1e2ebdb84dfaa..3bd346567069a23509f82a3dde73bfce4f7576b1 100755 (executable)
--- a/configure
+++ b/configure
@@ -519,7 +519,7 @@ cat >> confdefs.h <<EOF
 #define PACKAGE "$PACKAGE"
 EOF
 
-VERSION=0.33
+VERSION=0.34
 
 cat >> confdefs.h <<EOF
 #define VERSION "$VERSION"
@@ -528,7 +528,7 @@ EOF
 ALL_LINGUAS=
 
 echo $ac_n "checking whether ${MAKE-make} sets \${MAKE}""... $ac_c" 1>&6
-set dummy ${MAKE-make}; ac_make=$2
+set dummy ${MAKE-make}; ac_make=`echo "$2" | tr './\055' '___'`
 if eval "test \"`echo '$''{'ac_cv_prog_make_${ac_make}_set'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
 else
index c534fc7e725dea9d9884110c6c0186dfc36302e3..3c49ced70e48668464ce68a30a748fc46c7f5cde 100644 (file)
@@ -6,7 +6,7 @@ dnl AC_CONFIG_HEADER(config.h)
 PACKAGE=automake
 AC_SUBST(PACKAGE)
 AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE")
-VERSION=0.33
+VERSION=0.34
 AC_SUBST(VERSION)
 AC_DEFINE_UNQUOTED(VERSION, "$VERSION")
 ALL_LINGUAS=
index 1b1b779507374d1fe2140b7824ec157aeb6c904c..59e8eed7d5478da65905e76b2aef97d9412cca44 100644 (file)
@@ -1,3 +1,3 @@
 @set UPDATED 17 May 1996
-@set EDITION 0.33
-@set VERSION 0.33
+@set EDITION 0.34
+@set VERSION 0.34
This page took 0.044846 seconds and 5 git commands to generate.