1
0
mirror of https://github.com/gryf/wmaker.git synced 2026-02-13 04:15:50 +01:00

Update for 0.51.0

This commit is contained in:
dan
1999-01-25 19:06:50 +00:00
parent 3aeb1eb052
commit 416e3a82be
238 changed files with 24235 additions and 11473 deletions

View File

@@ -564,7 +564,7 @@ loadConfigurations(WMScreen *scr, WMWindow *mainw)
}
free(path);
file = popen("wmaker -version", "r");
file = popen("wmaker --version", "r");
if (!file || !fgets(buffer, 1023, file)) {
wsyserror(_("could not extract version information from Window Maker"));
wfatal(_("Make sure wmaker is in your search path."));
@@ -597,9 +597,9 @@ loadConfigurations(WMScreen *scr, WMWindow *mainw)
WMRunAlertPanel(scr, mainw, _("Warning"), mbuf, _("OK"), NULL, NULL);
}
file = popen("wmaker -global_defaults_path", "r");
file = popen("wmaker --global_defaults_path", "r");
if (!file || !fgets(buffer, 1023, file)) {
wsyserror(_("could not run \"wmaker -global_defaults_path\"."));
wsyserror(_("could not run \"wmaker --global_defaults_path\"."));
exit(1);
}
if (file)