summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorPeter Johnson <peter@tortall.net>2011-08-19 10:43:16 -0700
committerPeter Johnson <peter@tortall.net>2011-08-19 10:43:16 -0700
commit94ab1135a30827eeb9a422489656c363ed115eec (patch)
tree30e469b7fde9c7b682b643e291d3a8cba9605eba /tools
parent502eebd33964a95cb8d9aa0dfed981679c30f7da (diff)
downloadyasm-94ab1135a30827eeb9a422489656c363ed115eec.tar.gz
Remove $Id$ and RCSID() usage.
These are useless now that we're using git.
Diffstat (limited to 'tools')
-rw-r--r--tools/Makefile.inc2
-rw-r--r--tools/genmacro/Makefile.inc2
-rw-r--r--tools/genmacro/genmacro.c2
-rw-r--r--tools/genperf/Makefile.inc2
-rw-r--r--tools/genperf/genperf.c2
-rw-r--r--tools/genperf/perfect.c4
-rw-r--r--tools/python-yasm/Makefile.inc2
-rw-r--r--tools/python-yasm/tests/Makefile.inc2
-rw-r--r--tools/python-yasm/tests/__init__.py1
-rwxr-xr-xtools/python-yasm/tests/python_test.sh1
-rw-r--r--tools/python-yasm/tests/test_bytecode.py1
-rw-r--r--tools/python-yasm/tests/test_expr.py1
-rw-r--r--tools/python-yasm/tests/test_intnum.py1
-rw-r--r--tools/python-yasm/tests/test_symrec.py1
-rw-r--r--tools/re2c/Makefile.inc2
-rw-r--r--tools/xdf/xdf.h1
-rw-r--r--tools/xdf/xdfdump.c2
17 files changed, 4 insertions, 25 deletions
diff --git a/tools/Makefile.inc b/tools/Makefile.inc
index 0dd462c6..dbc67fcb 100644
--- a/tools/Makefile.inc
+++ b/tools/Makefile.inc
@@ -1,5 +1,3 @@
-# $Id$
-
EXTRA_DIST += tools/re2c/Makefile.inc
EXTRA_DIST += tools/genmacro/Makefile.inc
EXTRA_DIST += tools/genperf/Makefile.inc
diff --git a/tools/genmacro/Makefile.inc b/tools/genmacro/Makefile.inc
index c81edd14..722f95da 100644
--- a/tools/genmacro/Makefile.inc
+++ b/tools/genmacro/Makefile.inc
@@ -1,5 +1,3 @@
-# $Id$
-
# These utility programs have to be built for BUILD host in cross-build.
# This makes things rather non-standard automake
diff --git a/tools/genmacro/genmacro.c b/tools/genmacro/genmacro.c
index d3f4200a..8e702b86 100644
--- a/tools/genmacro/genmacro.c
+++ b/tools/genmacro/genmacro.c
@@ -1,4 +1,4 @@
-/* $Id$
+/*
*
* C version of NASM's macros.pl
*
diff --git a/tools/genperf/Makefile.inc b/tools/genperf/Makefile.inc
index d9f24afa..135da6b9 100644
--- a/tools/genperf/Makefile.inc
+++ b/tools/genperf/Makefile.inc
@@ -1,5 +1,3 @@
-# $Id$
-
# These utility programs have to be built for BUILD host in cross-build.
# This makes things rather non-standard automake
diff --git a/tools/genperf/genperf.c b/tools/genperf/genperf.c
index c05a4cc0..c3cfa766 100644
--- a/tools/genperf/genperf.c
+++ b/tools/genperf/genperf.c
@@ -1,4 +1,4 @@
-/* $Id$
+/*
*
* Generate Minimal Perfect Hash (genperf)
*
diff --git a/tools/genperf/perfect.c b/tools/genperf/perfect.c
index 579d3606..af6b4612 100644
--- a/tools/genperf/perfect.c
+++ b/tools/genperf/perfect.c
@@ -1,6 +1,4 @@
-/* Modified for use with yasm by Peter Johnson.
- * $Id$
- */
+/* Modified for use with yasm by Peter Johnson. */
/*
------------------------------------------------------------------------------
perfect.c: code to generate code for a hash for perfect hashing.
diff --git a/tools/python-yasm/Makefile.inc b/tools/python-yasm/Makefile.inc
index e4559964..fce135b4 100644
--- a/tools/python-yasm/Makefile.inc
+++ b/tools/python-yasm/Makefile.inc
@@ -1,5 +1,3 @@
-# $Id$
-
PYBINDING_DEPS = tools/python-yasm/bytecode.pxi
PYBINDING_DEPS += tools/python-yasm/errwarn.pxi
PYBINDING_DEPS += tools/python-yasm/expr.pxi
diff --git a/tools/python-yasm/tests/Makefile.inc b/tools/python-yasm/tests/Makefile.inc
index 50c499d8..c6df22c5 100644
--- a/tools/python-yasm/tests/Makefile.inc
+++ b/tools/python-yasm/tests/Makefile.inc
@@ -1,5 +1,3 @@
-# $Id$
-
EXTRA_DIST += tools/python-yasm/tests/python_test.sh
EXTRA_DIST += tools/python-yasm/tests/__init__.py
EXTRA_DIST += tools/python-yasm/tests/test_bytecode.py
diff --git a/tools/python-yasm/tests/__init__.py b/tools/python-yasm/tests/__init__.py
index 6d608f28..f5afb30c 100644
--- a/tools/python-yasm/tests/__init__.py
+++ b/tools/python-yasm/tests/__init__.py
@@ -1,6 +1,5 @@
# Test wrapper from Quod Libet
# http://www.sacredchao.net/quodlibet/
-# $Id$
import unittest, sys
suites = []
add = registerCase = suites.append
diff --git a/tools/python-yasm/tests/python_test.sh b/tools/python-yasm/tests/python_test.sh
index 1f3896d6..18e7a69e 100755
--- a/tools/python-yasm/tests/python_test.sh
+++ b/tools/python-yasm/tests/python_test.sh
@@ -1,7 +1,6 @@
#!/bin/sh
# Based on _sanity.sh from Quod Libet
# http://www.sacredchao.net/quodlibet/
-# $Id$
set -e
diff --git a/tools/python-yasm/tests/test_bytecode.py b/tools/python-yasm/tests/test_bytecode.py
index fb6c2a2b..eb0e96db 100644
--- a/tools/python-yasm/tests/test_bytecode.py
+++ b/tools/python-yasm/tests/test_bytecode.py
@@ -1,4 +1,3 @@
-# $Id$
from tests import TestCase, add
from yasm import Bytecode, Expression
diff --git a/tools/python-yasm/tests/test_expr.py b/tools/python-yasm/tests/test_expr.py
index 1fb930d0..97b021c3 100644
--- a/tools/python-yasm/tests/test_expr.py
+++ b/tools/python-yasm/tests/test_expr.py
@@ -1,4 +1,3 @@
-# $Id$
from tests import TestCase, add
from yasm import Expression
import operator
diff --git a/tools/python-yasm/tests/test_intnum.py b/tools/python-yasm/tests/test_intnum.py
index 65e09efc..a2220180 100644
--- a/tools/python-yasm/tests/test_intnum.py
+++ b/tools/python-yasm/tests/test_intnum.py
@@ -1,4 +1,3 @@
-# $Id$
from tests import TestCase, add
from yasm import IntNum
diff --git a/tools/python-yasm/tests/test_symrec.py b/tools/python-yasm/tests/test_symrec.py
index a228eebd..a575b194 100644
--- a/tools/python-yasm/tests/test_symrec.py
+++ b/tools/python-yasm/tests/test_symrec.py
@@ -1,4 +1,3 @@
-# $Id$
from tests import TestCase, add
from yasm import SymbolTable, Expression, YasmError
diff --git a/tools/re2c/Makefile.inc b/tools/re2c/Makefile.inc
index ceff9087..edb89a5d 100644
--- a/tools/re2c/Makefile.inc
+++ b/tools/re2c/Makefile.inc
@@ -1,5 +1,3 @@
-# $Id$
-
# These utility programs have to be built for BUILD host in cross-build.
# This makes things rather non-standard automake
diff --git a/tools/xdf/xdf.h b/tools/xdf/xdf.h
index 6d5e3e79..e2150d25 100644
--- a/tools/xdf/xdf.h
+++ b/tools/xdf/xdf.h
@@ -1,6 +1,5 @@
/* XDF - Extended Dynamic Object Format */
/* Version 2.0 */
-/* $Id$ */
/* FILE HEADER */
/* SECTION HEADERS [] */
diff --git a/tools/xdf/xdfdump.c b/tools/xdf/xdfdump.c
index b61bf92a..8d3df212 100644
--- a/tools/xdf/xdfdump.c
+++ b/tools/xdf/xdfdump.c
@@ -1,4 +1,4 @@
-/* $Id$
+/*
* Extended Dynamic Object format dumper
*
* Copyright (C) 2004-2007 Peter Johnson