Skip to content
Snippets Groups Projects
Commit d654f94f authored by Lionel Ulmer's avatar Lionel Ulmer Committed by Alexandre Julliard
Browse files

Added a '-inifile' option to specify the location of the wine.ini file

used in the building of the new wine.ini file.
parent 7493eada
No related branches found
No related tags found
No related merge requests found
......@@ -47,7 +47,7 @@ use File::Basename;
use strict;
use Carp;
GetOptions('windir=s', 'sysdir=s', 'thorough', 'debug:s') || &Usage;
GetOptions('windir=s', 'sysdir=s', 'thorough', 'debug:s', 'inifile=s') || &Usage;
&ReadFSTAB();
&FindWindowsDir();
......@@ -60,6 +60,7 @@ sub Usage {
print "-windir <filename> Location of windows dir in DOS space\n";
print "-thorough Do careful analysis (default)\n";
print "-sysdir <filename> Location of systems dir in DOS space\n";
print "-inifile <filename> Path to the wine.ini file (by default './wine.ini')\n";
# print "-tmpdir <filename> Location of tmp directory\n";
print "Generates (to STDOUT) a wine configuration file based on\n";
print "/etc/fstab and searching around in DOS directories\n";
......@@ -425,7 +426,11 @@ sub InsertDefaultFile {
}
sub StandardStuff {
&InsertDefaultFile("./wine.ini", "wineconf");
if (!$::opt_inifile) {
&InsertDefaultFile("./wine.ini", "wineconf");
} else {
&InsertDefaultFile($::opt_inifile, "wineconf");
}
}
sub byFileAge {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment