aboutsummaryrefslogtreecommitdiffstats
path: root/make-version.pl
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2008-06-24 20:54:38 +0000
committerGerald Combs <gerald@wireshark.org>2008-06-24 20:54:38 +0000
commit38d6dc43a48e844657228bb8a2d4a6310cd29f63 (patch)
treeff4d1c53a49889431065e5482d0488db17d41b34 /make-version.pl
parentb47985d13e8f0c70e3c9d6712e9b8baa51ed794d (diff)
Fix a logic problem.
svn path=/trunk/; revision=25592
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>) {