Blame po/remove-potcdate.sin

Packit aa0600
# Sed script that remove the POT-Creation-Date line in the header entry
Packit aa0600
# from a POT file.
Packit aa0600
#
Packit aa0600
# The distinction between the first and the following occurrences of the
Packit aa0600
# pattern is achieved by looking at the hold space.
Packit aa0600
/^"POT-Creation-Date: .*"$/{
Packit aa0600
x
Packit aa0600
# Test if the hold space is empty.
Packit aa0600
s/P/P/
Packit aa0600
ta
Packit aa0600
# Yes it was empty. First occurrence. Remove the line.
Packit aa0600
g
Packit aa0600
d
Packit aa0600
bb
Packit aa0600
:a
Packit aa0600
# The hold space was nonempty. Following occurrences. Do nothing.
Packit aa0600
x
Packit aa0600
:b
Packit aa0600
}