[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Bug-wget] [PATCH] Makefile.am: use echo w/o -n option for portability
From: |
Christian Ebert |
Subject: |
[Bug-wget] [PATCH] Makefile.am: use echo w/o -n option for portability |
Date: |
Fri, 13 Mar 2009 15:58:56 +0100 |
# HG changeset patch
# User Christian Ebert <address@hidden>
# Date 1236956178 -3600
# Node ID ae9df3989c562e23bd76d6a410f46490c9a11027
# Parent ee9e0d7ae2d91d9fa4d3ba57d2e225a4319cbb97
Makefile.am: use echo w/o -n option for portability
diff --git a/src/Makefile.am b/src/Makefile.am
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -62,7 +62,7 @@
echo '/* version.c */' > $@
echo '/* Autogenerated by Makefile - DO NOT EDIT */' >> $@
echo '' >> $@
- echo -n 'const char *version_string = "@VERSION@"' >> $@
+ echo 'const char *version_string = "@VERSION@"' >> $@
-hg log -r . --template='" ({node|short})"\n' 2>/dev/null >> $@
echo ';' >> $@
echo 'const char *compilation_string = "'$(COMPILE)'";' \
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Bug-wget] [PATCH] Makefile.am: use echo w/o -n option for portability,
Christian Ebert <=