[llvm-commits] CVS: llvm/tools/gccld/gccld.sh
Reid Spencer
reid at x10sys.com
Fri Feb 9 07:17:15 PST 2007
Changes in directory llvm/tools/gccld:
gccld.sh updated: 1.2 -> 1.3
---
Log message:
Write the deprecation message to stderr instead of stdout so that it
doesn't get mingled with the output bytecode.
---
Diffs of the changes: (+1 -1)
gccld.sh | 2 +-
1 files changed, 1 insertion(+), 1 deletion(-)
Index: llvm/tools/gccld/gccld.sh
diff -u llvm/tools/gccld/gccld.sh:1.2 llvm/tools/gccld/gccld.sh:1.3
--- llvm/tools/gccld/gccld.sh:1.2 Thu Feb 8 21:12:21 2007
+++ llvm/tools/gccld/gccld.sh Fri Feb 9 09:16:59 2007
@@ -18,6 +18,6 @@
#
##===----------------------------------------------------------------------===##
#
-echo "gccld: This tool is deprecated, please use llvm-ld"
+echo "gccld: This tool is deprecated, please use llvm-ld" 1>&2
TOOLDIR=@TOOLDIR@
$TOOLDIR/llvm-ld "$@"
More information about the llvm-commits
mailing list