Remove references to deprecated wineprefixcreate

Austin English austinenglish at gmail.com
Mon Apr 13 22:20:38 CDT 2009


-- 
-Austin
-------------- next part --------------
diff --git a/dlls/dinput8/dinput8_main.c b/dlls/dinput8/dinput8_main.c
index c855caf..cbe28ea 100644
--- a/dlls/dinput8/dinput8_main.c
+++ b/dlls/dinput8/dinput8_main.c
@@ -66,7 +66,7 @@ HRESULT WINAPI DirectInput8Create(HINSTANCE hinst, DWORD dwVersion, REFIID riid,
     
     hr = CoCreateInstance( &CLSID_DirectInput8, punkOuter, CLSCTX_INPROC_SERVER, riid, ppDI);
     if(FAILED(hr)) {
-        ERR("CoCreateInstance failed with hr = %d; Try running wineprefixcreate to fix it.\n", hr);
+        ERR("CoCreateInstance failed with hr = %d; Try running wineboot to fix it.\n", hr);
         return DIERR_INVALIDPARAM;
     }
 
diff --git a/dlls/hlink/tests/hlink.c b/dlls/hlink/tests/hlink.c
index 5e07359..9b51eef 100644
--- a/dlls/hlink/tests/hlink.c
+++ b/dlls/hlink/tests/hlink.c
@@ -443,7 +443,7 @@ static void test_persist(void)
                                0, NULL, &IID_IHlink, (LPVOID*) &lnk);
     ok(hr == S_OK, "IHlinkCreateFromString failed with error 0x%08x\n", hr);
     if (!lnk) {
-        skip("Can't create lnk, skipping test_persist.  Was wineprefixcreate run properly?\n");
+        skip("Can't create lnk, skipping test_persist.  Was WINEPREFIX created properly? Try in a fresh one.\n");
         return;
     }
     test_persist_save_data("url only", lnk,
diff --git a/programs/winecfg/drivedetect.c b/programs/winecfg/drivedetect.c
index 8e55f56..3b2d561 100644
--- a/programs/winecfg/drivedetect.c
+++ b/programs/winecfg/drivedetect.c
@@ -202,7 +202,7 @@ static void report_error(int code)
 
         case NO_DRIVE_C:
             if (gui_mode)
-                MessageBox(NULL, "No virtual drive C mapped\n\nTry running wineprefixcreate", "", MB_OK | MB_ICONEXCLAMATION);
+                MessageBox(NULL, "No virtual drive C mapped\n\nTry running wineboot.", "", MB_OK | MB_ICONEXCLAMATION);
             else
                 fprintf(stderr, "winecfg: no drive_c directory\n");
 
diff --git a/tools/wineprefixcreate.in b/tools/wineprefixcreate.in
index 5612dfd..70ef42c 100644
--- a/tools/wineprefixcreate.in
+++ b/tools/wineprefixcreate.in
@@ -113,6 +113,7 @@ done
 
 echo "Note: wineprefixcreate is deprecated and shouldn't be needed anymore." 1>&2
 echo "      WINEPREFIX creation and updates now happen automatically when needed." 1>&2
+echo "      Use wineboot to manually create or update WINEPREFIX." 1>&2
 echo 1>&2
 
 WINEPREFIX="${WINEPREFIX:-$HOME/.wine}"


More information about the wine-patches mailing list