From d704f7803a39c25fc926d87017b016cb3d1619ee Mon Sep 17 00:00:00 2001 From: Daniel Jahre Date: Thu, 15 Dec 2005 10:45:03 +0000 Subject: [PATCH] Daniel Jahre: only execute ./regchrome if the package is mozilla firefox does not have the chrome theme anymore fixes a build problem with firefox 1.5 [2005120421304228516] (https://www.rocklinux.net/submaster) git-svn-id: http://www.rocklinux.org/svn/rock-linux/trunk@6736 c5f82cb5-29bc-0310-9cd0-bff59a50e3bc --- package/x11/mozilla/mozilla.conf | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/package/x11/mozilla/mozilla.conf b/package/x11/mozilla/mozilla.conf index 8557545e5..7f57309d8 100644 --- a/package/x11/mozilla/mozilla.conf +++ b/package/x11/mozilla/mozilla.conf @@ -83,7 +83,9 @@ moz_register() { echo "Run the component registration ..." pushd $MOZILLA_FIVE_HOME LD_LIBRARY_PATH=. ./regxpcom - LD_LIBRARY_PATH=. ./regchrome + if [ $pkg = "mozilla" ]; then + LD_LIBRARY_PATH=. ./regchrome + fi popd }