b16ee369be
Tested on amd64 and macppc.
18 lines
715 B
Plaintext
18 lines
715 B
Plaintext
$OpenBSD: patch-toolkit_xre_nsXREDirProvider_cpp,v 1.3 2011/06/28 22:01:18 landry Exp $
|
|
Look for extensions in LOCALBASE
|
|
--- toolkit/xre/nsXREDirProvider.cpp.orig Fri May 27 18:12:58 2011
|
|
+++ toolkit/xre/nsXREDirProvider.cpp Tue May 31 22:18:40 2011
|
|
@@ -1154,11 +1154,7 @@ nsXREDirProvider::GetSystemExtensionsDirectory(nsILoca
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
#elif defined(XP_UNIX)
|
|
static const char *const sysSExtDir =
|
|
-#ifdef HAVE_USR_LIB64_DIR
|
|
- "/usr/lib64/mozilla/extensions";
|
|
-#else
|
|
- "/usr/lib/mozilla/extensions";
|
|
-#endif
|
|
+ "${LOCALBASE}/lib/mozilla/extensions";
|
|
|
|
rv = NS_NewNativeLocalFile(nsDependentCString(sysSExtDir), PR_FALSE,
|
|
getter_AddRefs(localDir));
|