~ubuntu-branches/debian/squeeze/bugzilla/squeeze

« back to all changes in this revision

Viewing changes to debian/maintenance/checksetup_debian.sh

  • Committer: Bazaar Package Importer
  • Author(s): Raphael Bossek
  • Date: 2009-11-29 13:56:03 UTC
  • Revision ID: james.westby@ubuntu.com-20091129135603-kaarylp87e1t5208
Tags: 3.2.5.1-2
Fixed dash compatibility within ../bugzilla3/lib/checksetup.pl.
Closes: #558238

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
 
29
29
checksetup()
30
30
{
31
 
    in=($@)
32
31
    # /usr/share/bugzilla3/lib/checksetup_nondebian.pl exit with error code 9
33
32
    # if the /etc/bugzilla3/localconfig variables where updated. In this case
34
33
    # we restart checksetup_nondebian.pl to apply the changes.
35
34
    errorcode=9
36
35
    while [ "$errorcode" = "9" ]; do
37
 
        perl /usr/share/bugzilla3/lib/checksetup_nondebian.pl ${in[*]} >>"$tmplog" 2>&1 \
 
36
        perl /usr/share/bugzilla3/lib/checksetup_nondebian.pl $@ >>"$tmplog" 2>&1 \
38
37
            && errorcode=0 \
39
38
            || errorcode=$?
40
39
    done