summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xtools/process-x11-fields.pl2
-rwxr-xr-xtools/process-x11-xcb.pl2
-rw-r--r--tools/test-common.sh5
3 files changed, 1 insertions, 8 deletions
diff --git a/tools/process-x11-fields.pl b/tools/process-x11-fields.pl
index 45b20f13fe..dd4ec9fb7c 100755
--- a/tools/process-x11-fields.pl
+++ b/tools/process-x11-fields.pl
@@ -36,8 +36,6 @@ sub add_generated_header {
/* It was automatically generated by $0. */
eot
;
- # Since this file is checked in, add its SVN revision
- print $out "/* \$"."Id"."\$ */\n\n";
# Add license text
print $out <<eot
diff --git a/tools/process-x11-xcb.pl b/tools/process-x11-xcb.pl
index 8ebb67560b..2eb17a1632 100755
--- a/tools/process-x11-xcb.pl
+++ b/tools/process-x11-xcb.pl
@@ -1651,8 +1651,6 @@ sub add_generated_header {
using $using version $ver */
eot
;
- # Since this file is checked in, add its SVN revision
- print $out "/* \$"."Id"."\$ */\n\n";
# Add license text
print $out <<eot
diff --git a/tools/test-common.sh b/tools/test-common.sh
index bd96aa2c70..e5e1e8cc69 100644
--- a/tools/test-common.sh
+++ b/tools/test-common.sh
@@ -136,10 +136,7 @@ function exit_error() {
echo -e "\n" >> $TMP_DIR/${ERR_FILE}.header
- if [ -d .svn ] ; then
- echo -e "\nSubversion revision" >> $TMP_DIR/${ERR_FILE}.header
- svn log -l 1 >> $TMP_DIR/${ERR_FILE}.header
- elif [ -d .git ] ; then
+ if [ -d .git ] ; then
echo -e "\nGit commit" >> $TMP_DIR/${ERR_FILE}.header
git log -1 >> $TMP_DIR/${ERR_FILE}.header
fi