Wireshark-bugs: [Wireshark-bugs] [Bug 13163] New: make-version.pl: $vconf_file location issue
Date: Tue, 22 Nov 2016 08:48:44 +0000
Bug ID 13163
Summary make-version.pl: $vconf_file location issue
Product Wireshark
Version 2.2.2
Hardware x86
OS Solaris
Status UNCONFIRMED
Severity Major
Priority Low
Component Build process
Assignee bugzilla-admin@wireshark.org
Reporter petr.sumbera@oracle.com

Build Information:
Paste the COMPLETE build information from "Help->About Wireshark", "wireshark
-v", or "tshark -v".
--
make-version.pl doesn't handle case when wireshark is build outside of source
directory. Following change is needed:

--- make-version.pl
+++ make-version.pl
@@ -688,7 +688,7 @@
                $srcdir = $ARGV[0]
        }

-       if (! open(FILE, "<$vconf_file")) {
+       if (! open(FILE, "<$srcdir/$vconf_file")) {
                print_diag "Version configuration file $vconf_file not "
                . "found. Using defaults.\n";
                return 1;

For the background info see Bug 12901.


You are receiving this mail because:
  • You are watching all bug changes.