Hi,

I have the same problem. -profile option won't work.

/usr/bin/iceweasel script prepend file:// to every argument except
an argument for options listed in following:

    case "${arg}" in
        -a | --display | -contentLocale | -UILocale | -remote | --debugger | 
-height | -width | -chrome | -P | -CreateProfile)
            prev=${arg}
            continue
        ;;

To protect the argument for -profile option from
file:// prepending, we need to add "-profile" to the above list.

Here is a small patch to fix this problem.

--- iceweasel-3.0.1/debian/iceweasel-runner.orig        2008-08-17 
18:54:00.000000000 +0900
+++ iceweasel-3.0.1/debian/iceweasel-runner     2008-08-17 18:54:15.000000000 
+0900
@@ -169,7 +169,7 @@
     fi

     case "${arg}" in
-        -a | --display | -contentLocale | -UILocale | -remote | --debugger | 
-height | -width | -chrome | -P | -CreateProfile)
+        -a | --display | -contentLocale | -UILocale | -remote | --debugger | 
-height | -width | -chrome | -P | -CreateProfile | -profile)
             prev=${arg}
             continue
         ;;


Regards,

--
Morita Sho <[EMAIL PROTECTED]>




--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to