From 482b23cf3d51a3c54dc7ecbb690a855cda066d87 Mon Sep 17 00:00:00 2001 From: Christian Wiese Date: Mon, 9 Aug 2010 13:41:50 +0200 Subject: [PATCH] seamonkey/mozilla: check if 'regxpcom' does exist before calling it (see note) Note: This fixed a build issue with firefox where it tried to call the non-existing 'regxpcom'. --- www/seamonkey/mozilla-conf.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/www/seamonkey/mozilla-conf.in b/www/seamonkey/mozilla-conf.in index 76519c1b6..d922909ce 100644 --- a/www/seamonkey/mozilla-conf.in +++ b/www/seamonkey/mozilla-conf.in @@ -2,7 +2,7 @@ # This copyright note is auto-generated by ./scripts/Create-CopyPatch. # # Filename: package/.../seamonkey/mozilla-conf.in -# Copyright (C) 2006 - 2007 The OpenSDE Project +# Copyright (C) 2006 - 2010 The OpenSDE Project # Copyright (C) 2004 - 2006 The T2 SDE Project # Copyright (C) 1998 - 2004 Clifford Wolf # @@ -95,7 +95,7 @@ EOF mozilla_register() { echo "Run the component registration ..." pushd $MOZILLA_FIVE_HOME - LD_LIBRARY_PATH=. ./regxpcom + [ -e ./regxpcom ] && LD_LIBRARY_PATH=. ./regxpcom [ -e ./regchrome ] && LD_LIBRARY_PATH=. ./regchrome popd }