aboutsummaryrefslogtreecommitdiffstats
path: root/make-version.pl
diff options
context:
space:
mode:
authorgerald <gerald@f5534014-38df-0310-8fa8-9805f1628bb7>2008-06-24 20:54:38 +0000
committergerald <gerald@f5534014-38df-0310-8fa8-9805f1628bb7>2008-06-24 20:54:38 +0000
commit68c2c0c23f9fd6b01ffb4ffdadab0ac5233e3b16 (patch)
treeff4d1c53a49889431065e5482d0488db17d41b34 /make-version.pl
parentf4a263f5b20e0eff5b25bda560535a509665e9be (diff)
Fix a logic problem.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@25592 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'make-version.pl')
-rwxr-xr-xmake-version.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/make-version.pl b/make-version.pl
index b21f99fc36..5956e9d926 100755
--- a/make-version.pl
+++ b/make-version.pl
@@ -192,7 +192,7 @@ sub update_config_nmake
my $version = "";
my $update_ve = 0;
- if ($package_string eq "") { $update_ve = 1; };
+ if ($package_string ne "") { $update_ve = 1; };
open(CFGIN, "< config.nmake") || die "Can't read config.nmake!";
while ($line = <CFGIN>) {