diff options
author | nobody <nobody@localhost> | 2001-07-21 05:39:10 +0800 |
---|---|---|
committer | nobody <nobody@localhost> | 2001-07-21 05:39:10 +0800 |
commit | e5b0c9abd7f9a1759ff942ac9d3a1eb53ddbc1b8 (patch) | |
tree | 73e0cf26a0654d0e265dc3951ab83d825af9dd1f /macros/mozilla-version.pl | |
parent | 5637adc2c07617b7f5ea206d24cfa073787a4e0d (diff) | |
download | gsoc2013-evolution-METATHEME_0_6_1.tar gsoc2013-evolution-METATHEME_0_6_1.tar.gz gsoc2013-evolution-METATHEME_0_6_1.tar.bz2 gsoc2013-evolution-METATHEME_0_6_1.tar.lz gsoc2013-evolution-METATHEME_0_6_1.tar.xz gsoc2013-evolution-METATHEME_0_6_1.tar.zst gsoc2013-evolution-METATHEME_0_6_1.zip |
This commit was manufactured by cvs2svn to create tagMETATHEME_0_6_1
'METATHEME_0_6_1'.
svn path=/tags/METATHEME_0_6_1/; revision=11288
Diffstat (limited to 'macros/mozilla-version.pl')
-rw-r--r-- | macros/mozilla-version.pl | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/macros/mozilla-version.pl b/macros/mozilla-version.pl deleted file mode 100644 index 21e20c63ff..0000000000 --- a/macros/mozilla-version.pl +++ /dev/null @@ -1,12 +0,0 @@ -#!/usr/bin/perl - -# Tiny Perl script to check the mozilla version. I don't even like Perl. -# to make things easier on myself, I'm just going to treat the mozilla version as base 10. This will probably break - -# Author: Andrew Chatham - -$ver = 0; -while (<>) { - if (/useragent.misc\", \"rv:([0-9]+)\.([0-9]+)\.([0-9]+)/) { $ver = $1 * 100 + $2 * 10 + $3; } -} -print $ver; |