aboutsummaryrefslogtreecommitdiffstats
path: root/po/insert-header.sin
diff options
context:
space:
mode:
authorDRC <dcommander@users.sourceforge.net>2011-06-24 19:28:27 +0000
committerDRC <dcommander@users.sourceforge.net>2011-06-24 19:28:27 +0000
commit1980dd537cb4c85ac04dc23fbde542c2495ed1fc (patch)
tree9f06cff551308dfc62cf7a902c6cb23f92054b84 /po/insert-header.sin
parent3641a17969df0f38a9f886971f4dc232c7c47b46 (diff)
downloadtigervnc-1980dd537cb4c85ac04dc23fbde542c2495ed1fc.tar.gz
tigervnc-1980dd537cb4c85ac04dc23fbde542c2495ed1fc.zip
Remove unused autotools build system
git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@4540 3789f03b-4d11-0410-bbf8-ca57d06f2519
Diffstat (limited to 'po/insert-header.sin')
-rw-r--r--po/insert-header.sin23
1 files changed, 0 insertions, 23 deletions
diff --git a/po/insert-header.sin b/po/insert-header.sin
deleted file mode 100644
index b26de01f..00000000
--- a/po/insert-header.sin
+++ /dev/null
@@ -1,23 +0,0 @@
-# Sed script that inserts the file called HEADER before the header entry.
-#
-# At each occurrence of a line starting with "msgid ", we execute the following
-# commands. At the first occurrence, insert the file. At the following
-# occurrences, do nothing. The distinction between the first and the following
-# occurrences is achieved by looking at the hold space.
-/^msgid /{
-x
-# Test if the hold space is empty.
-s/m/m/
-ta
-# Yes it was empty. First occurrence. Read the file.
-r HEADER
-# Output the file's contents by reading the next line. But don't lose the
-# current line while doing this.
-g
-N
-bb
-:a
-# The hold space was nonempty. Following occurrences. Do nothing.
-x
-:b
-}