| 1 |
#!/bin/sh -e
|
| 2 |
## 13_zisofs.191367.dpatch by Andreas Metzler <ametzler@logic.univie.ac.at>
|
| 3 |
##
|
| 4 |
## All lines beginning with `## DP:' are a description of the patch.
|
| 5 |
## DP: mkzftree(8) is incorrect - the option s called "--crib-tree" and not
|
| 6 |
## DP: --crib-path. Bug #191367
|
| 7 |
|
| 8 |
if [ $# -ne 1 ]; then
|
| 9 |
echo >&2 "`basename $0`: script expects -patch|-unpatch as argument"
|
| 10 |
exit 1
|
| 11 |
fi
|
| 12 |
|
| 13 |
[ -f debian/patches/00patch-opts ] && . debian/patches/00patch-opts
|
| 14 |
patch_opts="${patch_opts:--f --no-backup-if-mismatch}"
|
| 15 |
|
| 16 |
case "$1" in
|
| 17 |
-patch) patch $patch_opts -p1 < $0;;
|
| 18 |
-unpatch) patch $patch_opts -p1 -R < $0;;
|
| 19 |
*)
|
| 20 |
echo >&2 "`basename $0`: script expects -patch|-unpatch as argument"
|
| 21 |
exit 1;;
|
| 22 |
esac
|
| 23 |
|
| 24 |
exit 0
|
| 25 |
|
| 26 |
@DPATCH@
|
| 27 |
diff -urNad /tmp/cdrtools-2.01/zisofs_tools/mkzftree.8 cdrtools-2.01/zisofs_tools/mkzftree.8
|
| 28 |
--- /tmp/cdrtools-2.01/zisofs_tools/mkzftree.8 Fri May 9 15:01:45 2003
|
| 29 |
+++ cdrtools-2.01/zisofs_tools/mkzftree.8 Fri May 9 15:03:02 2003
|
| 30 |
@@ -50,7 +50,7 @@
|
| 31 |
Do not cross filesystem boundaries, and do not create directory stubs
|
| 32 |
at mount points.
|
| 33 |
.TP
|
| 34 |
-\fB\-C\fP \fIpath\fP, \fB\-\-crib-path\fP \fIpath\fP
|
| 35 |
+\fB\-C\fP \fIpath\fP, \fB\-\-crib-tree\fP \fIpath\fP
|
| 36 |
Steal ("crib") files from another directory if it looks (based on
|
| 37 |
name, size, type and modification time) like they match entries in the
|
| 38 |
new filesystem. The "crib tree" is usually the compressed version of
|