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 |
[email protected]
|
Reporter |
[email protected]
|
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.