summaryrefslogtreecommitdiff
path: root/bin/automake.in
diff options
context:
space:
mode:
Diffstat (limited to 'bin/automake.in')
-rwxr-xr-xbin/automake.in35
1 files changed, 1 insertions, 34 deletions
diff --git a/bin/automake.in b/bin/automake.in
index 18a6fbf3e..ca9548518 100755
--- a/bin/automake.in
+++ b/bin/automake.in
@@ -71,6 +71,7 @@ use Automake::Language;
use Automake::Utils;
use Automake::CondStack;
use Automake::ConfVars;
+use Automake::Errors;
use File::Basename;
use File::Spec;
use Carp;
@@ -575,41 +576,7 @@ register_language ('name' => 'java',
################################################################
-# Error reporting functions.
-# err_am ($MESSAGE, [%OPTIONS])
-# -----------------------------
-# Uncategorized errors about the current Makefile.am.
-sub err_am
-{
- msg_am ('error', @_);
-}
-
-# err_ac ($MESSAGE, [%OPTIONS])
-# -----------------------------
-# Uncategorized errors about configure.ac.
-sub err_ac
-{
- msg_ac ('error', @_);
-}
-
-# msg_am ($CHANNEL, $MESSAGE, [%OPTIONS])
-# ---------------------------------------
-# Messages about about the current Makefile.am.
-sub msg_am
-{
- my ($channel, $msg, %opts) = @_;
- msg $channel, "${am_file}.am", $msg, %opts;
-}
-
-# msg_ac ($CHANNEL, $MESSAGE, [%OPTIONS])
-# ---------------------------------------
-# Messages about about configure.ac.
-sub msg_ac
-{
- my ($channel, $msg, %opts) = @_;
- msg $channel, $configure_ac, $msg, %opts;
-}
################################################################