~ubuntu-branches/ubuntu/precise/automake1.11/precise-proposed

« back to all changes in this revision

Viewing changes to tests/makej.test

  • Committer: Bazaar Package Importer
  • Author(s): Eric Dorland
  • Date: 2009-08-12 02:36:44 UTC
  • Revision ID: james.westby@ubuntu.com-20090812023644-f40we9eqbmx1dpbj
Tags: upstream-1.11
ImportĀ upstreamĀ versionĀ 1.11

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#! /bin/sh
 
2
# Copyright (C) 2003  Free Software Foundation, Inc.
 
3
#
 
4
# This program is free software; you can redistribute it and/or modify
 
5
# it under the terms of the GNU General Public License as published by
 
6
# the Free Software Foundation; either version 2, or (at your option)
 
7
# any later version.
 
8
#
 
9
# This program is distributed in the hope that it will be useful,
 
10
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
12
# GNU General Public License for more details.
 
13
#
 
14
# You should have received a copy of the GNU General Public License
 
15
# along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
16
 
 
17
# `make -j' used to fail with Autoconf < 2.58, because tools like
 
18
# autoconf and automake can try to update autom4te's cache in parallel.
 
19
#
 
20
# Note that failures might not be reproducible systematically as they
 
21
# depend on the time at which autoconf and automake update the cache
 
22
# via autom4te.
 
23
 
 
24
required=GNUmake
 
25
. ./defs || Exit 1
 
26
 
 
27
set -e
 
28
 
 
29
cat >configure.in <<'END'
 
30
m4_include([version.m4])
 
31
AC_INIT([version7], [THE_VERSION])
 
32
AM_INIT_AUTOMAKE
 
33
AC_CONFIG_HEADER([config.h])
 
34
AC_CONFIG_FILES([Makefile])
 
35
AC_OUTPUT
 
36
END
 
37
 
 
38
echo 'm4_define([THE_VERSION], [2.718])' > version.m4
 
39
 
 
40
: > Makefile.am
 
41
 
 
42
$ACLOCAL
 
43
$AUTOCONF
 
44
$AUTOHEADER
 
45
$AUTOMAKE --add-missing
 
46
./configure --version | grep '2\.718'
 
47
./configure
 
48
$MAKE
 
49
 
 
50
$sleep
 
51
echo 'm4_define([THE_VERSION], [3.141])' > version.m4
 
52
$MAKE -j
 
53
./configure --version | grep '3\.141'