~ubuntu-branches/ubuntu/natty/quilt/natty

« back to all changes in this revision

Viewing changes to quilt/top.in

  • Committer: Bazaar Package Importer
  • Author(s): Martin Quinson
  • Date: 2006-11-23 16:17:11 UTC
  • mfrom: (2.1.6 feisty)
  • Revision ID: james.westby@ubuntu.com-20061123161711-b17ess0ls8t959ca
Tags: 0.45-6
* [debian/patches/override_mail_sender_in_testsuite]
  Fix the patch to catch all occurences of 'quilt mail' since each of them
  will cause a FTBFS on misconfigured hosts (thanks to Goswin Brederlow).
  (Closes: #397285, #395482, #393985) I hope, at least.
  
* [debian/patches/doc_improvement]
  Fix some more typos in the manpages
  (Closes: #386548, #395447)

* [debian/control]
   Add procmail to suggest list to help users locating the 'formail' tool.
   (Closes: #396093)

Show diffs side-by-side

added added

removed removed

Lines of Context:
9
9
# Read in library functions
10
10
if [ "$(type -t patch_file_name)" != function ]
11
11
then
12
 
        if ! [ -r @SCRIPTS@/patchfns ]
 
12
        if ! [ -r $QUILT_DIR/scripts/patchfns ]
13
13
        then
14
 
                echo "Cannot read library @SCRIPTS@/patchfns" >&2
 
14
                echo "Cannot read library $QUILT_DIR/scripts/patchfns" >&2
15
15
                exit 1
16
16
        fi
17
 
        . @SCRIPTS@/patchfns
 
17
        . $QUILT_DIR/scripts/patchfns
18
18
fi
19
19
 
20
20
usage()
57
57
        usage
58
58
fi
59
59
 
60
 
top=$(top_patch)
61
 
if [ -n "$top" ]
62
 
then
63
 
        echo "$(print_patch $top)"
64
 
else
65
 
        exit 2
66
 
fi
 
60
top=$(find_top_patch) || exit 2
 
61
echo "$(print_patch $top)"
 
62
 
67
63
### Local Variables:
68
64
### mode: shell-script
69
65
### End: