* lib/am/texi-vers.am, lib/am/subdirs.am, lib/am/scripts.am,
[platform/upstream/automake.git] / m4 / runlog.m4
1 # Copyright (C) 2001, 2003 Free Software Foundation, Inc.     -*- Autoconf -*-
2
3 # This program is free software; you can redistribute it and/or modify
4 # it under the terms of the GNU General Public License as published by
5 # the Free Software Foundation; either version 2, or (at your option)
6 # any later version.
7
8 # This program is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11 # GNU General Public License for more details.
12
13 # You should have received a copy of the GNU General Public License
14 # along with this program; if not, write to the Free Software
15 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
16 # 02111-1307, USA.
17
18 # AM_RUN_LOG(COMMAND)
19 # -------------------
20 # Run COMMAND, save the exit status in ac_status, and log it.
21 # (This has been adapted from Autoconf's _AC_RUN_LOG macro.)
22 AC_DEFUN([AM_RUN_LOG],
23 [{ echo "$as_me:$LINENO: $1" >&AS_MESSAGE_LOG_FD
24    ($1) >&AS_MESSAGE_LOG_FD 2>&AS_MESSAGE_LOG_FD
25    ac_status=$?
26    echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD
27    (exit $ac_status); }])