#!/bin/sh -e ## 014_gprof_manpage_fix.dpatch by Chris Chimelis ## ## All lines beginning with `## DP:' are a description of the patch. ## DP: Don't mention monitor(3) which doesn't exist in Debian. (#160654) if [ $# -ne 1 ]; then echo >&2 "`basename $0`: script expects -patch|-unpatch as argument" exit 1 fi [ -f debian/patches/00patch-opts ] && . debian/patches/00patch-opts patch_opts="${patch_opts:--f --no-backup-if-mismatch}" case "$1" in -patch) patch $patch_opts -p1 < $0;; -unpatch) patch $patch_opts -p1 -R < $0;; *) echo >&2 "`basename $0`: script expects -patch|-unpatch as argument" exit 1;; esac exit 0 @DPATCH@ diff -urNad /home/james/debian/packages/binutils/binutils-2.14.90.0.6/gprof/gprof.texi binutils-2.14.90.0.6/gprof/gprof.texi --- /home/james/debian/packages/binutils/binutils-2.14.90.0.6/gprof/gprof.texi 2002-08-02 01:49:32.000000000 +0100 +++ binutils-2.14.90.0.6/gprof/gprof.texi 2003-09-10 22:42:37.000000000 +0100 @@ -181,7 +181,7 @@ @c man end @c man begin SEEALSO -monitor(3), profil(2), cc(1), prof(1), and the Info entry for @file{gprof}. +profil(2), cc(1), prof(1), and the Info entry for @file{gprof}. ``An Execution Profiler for Modular Programs'', by S. Graham, P. Kessler, M. McKusick;