Browse Source

r15889@tombo: nickm | 2008-01-12 17:18:29 -0500
Stop trying to mess with version in tor-mingw.nsi.in when we reconfigure. This is a relic of our pre-mingw days, when we didn't use autoconf on windows.


svn:r13120

Nick Mathewson 16 years ago
parent
commit
1b4ef78f6a
1 changed files with 3 additions and 3 deletions
  1. 3 3
      contrib/updateVersions.pl

+ 3 - 3
contrib/updateVersions.pl

@@ -2,7 +2,7 @@
 
 $CONFIGURE_IN = './configure.in';
 $ORCONFIG_H = './src/win32/orconfig.h';
-$TOR_NSI = './contrib/tor-mingw.nsi.in';
+#$TOR_NSI = './contrib/tor-mingw.nsi.in';
 
 sub demand {
     my $fn = shift;
@@ -11,7 +11,7 @@ sub demand {
 
 demand($CONFIGURE_IN);
 demand($ORCONFIG_H);
-demand($TOR_NSI);
+#demand($TOR_NSI);
 
 # extract version from configure.in
 
@@ -53,5 +53,5 @@ sub correctversion {
     }
 }
 
-correctversion($TOR_NSI, "!");
+# correctversion($TOR_NSI, "!");
 correctversion($ORCONFIG_H, "#");