diff options
author | Jim Meyering <jim@meyering.net> | 2006-02-13 18:29:24 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2006-02-13 18:29:24 +0000 |
commit | c45d1385a9490a608ce386deca8b3182272ff8fc (patch) | |
tree | a2701b8729f1cbf72562751ab2764a616d1d6819 /GNUmakefile | |
parent | 158f8bac0534daf8ebc7c6be8d1534870fa8ba3d (diff) | |
download | coreutils-c45d1385a9490a608ce386deca8b3182272ff8fc.tar.xz |
(all): Emit diagnostics to stderr, not stdout.
Diffstat (limited to 'GNUmakefile')
-rw-r--r-- | GNUmakefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/GNUmakefile b/GNUmakefile index 675af8228..38d55245e 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -4,7 +4,7 @@ # It is necessary if you want to build targets usually of interest # only to the maintainer. -# Copyright (C) 2001, 2003 Free Software Foundation, Inc. +# Copyright (C) 2001, 2003, 2006 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -46,8 +46,8 @@ include $(srcdir)/Makefile.maint else all: - @echo There seems to be no Makefile in this directory. - @echo "You must run ./configure before running \`make'." + @echo There seems to be no Makefile in this directory. 1>&2 + @echo "You must run ./configure before running \`make'." 1>&2 @exit 1 endif |