annotate netinstall/version.pl @ 4371:9fdac4a4ae62

Provide 'iso8859-1 again; one file (iso-syntax.el) uses it in the packages. 2007-12-30 Aidan Kehoe <kehoea@parhasard.net> * iso8859-1.el: (provide 'iso8859-1) again, because one file uses it in the packages.
author Aidan Kehoe <kehoea@parhasard.net>
date Sun, 30 Dec 2007 16:48:34 +0100
parents 3078fd1074e8
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
448
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
1 while (<STDIN>) {
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
2 if (/^\$Revision:\s*([0-9\.]*)/) {
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
3 print "char *version = \"$1\";\n";
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
4 print "static char *id = \"\\n%%% setup-version $1\\n\";\n";
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
5 }
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
6 }