Magellan Linux

Diff of /trunk/include/mozilla.sminc

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 9880 by niro, Sat Jan 14 01:48:34 2012 UTC revision 33316 by niro, Wed Sep 16 10:26:25 2020 UTC
# Line 70  makemake2() Line 70  makemake2()
70  msetpref()  msetpref()
71  {  {
72   : ${MOZILLA_PREF_CONFIG="01-magellan.js"}   : ${MOZILLA_PREF_CONFIG="01-magellan.js"}
73   : ${MOZILLA_PREF_PATH="/usr/$(mlibdir)/${PNAME}/defaults/pref"}   case ${PNAME} in
74     *firefox*) : ${MOZILLA_PREF_PATH="/usr/$(mlibdir)/${PNAME}/browser/defaults/preferences"} ;;
75     *thunderbird*) : ${MOZILLA_PREF_PATH="/usr/$(mlibdir)/${PNAME}/defaults/preferences"} ;;
76     esac
77   local pref="$1"   local pref="$1"
78   local value="$2"   local value="$2"
79    
# Line 79  msetpref() Line 82  msetpref()
82   if [[ ${pref} = --init ]]   if [[ ${pref} = --init ]]
83   then   then
84   # only create an empty config   # only create an empty config
85     if [[ ! -d ${BINDIR}/${MOZILLA_PREF_PATH} ]]
86     then
87     install -d ${BINDIR}/${MOZILLA_PREF_PATH} || die
88     fi
89   :> ${BINDIR}/${MOZILLA_PREF_PATH}/${MOZILLA_PREF_CONFIG} || die   :> ${BINDIR}/${MOZILLA_PREF_PATH}/${MOZILLA_PREF_CONFIG} || die
90   else   else
91   # write a pref value   # write a pref value
92   [[ -z ${value} ]] && die "msetpref(): no \$value given"   [[ -z ${value} ]] && die "msetpref(): no \$value given"
93     # respect NULL values
94     [[ ${value} = NULL ]] && value=""
95    
96   # handle escaped strings:   # handle escaped strings:
97    

Legend:
Removed from v.9880  
changed lines
  Added in v.33316