X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=developers-reference.git;a=blobdiff_plain;f=common.ent;h=20aa8f16533861c5174375742242dd982c2aeed9;hp=86d92108a8124ccb4b747a7e4721d8e9785f5bef;hb=ee86710bb1d931008abb5c23499525ff9794c03b;hpb=ff9d221294cb704230148c5e9b2084bbdea7f336 diff --git a/common.ent b/common.ent index 86d9210..20aa8f1 100644 --- a/common.ent +++ b/common.ent @@ -40,7 +40,7 @@ - + @@ -53,9 +53,10 @@ - - + + + @@ -65,6 +66,7 @@ + @@ -101,6 +103,11 @@ + + + + + listmaster@&lists-host;"> debian-announce@&lists-host;"> +developers-reference@&packages-host;"> debian-changes@lists.debian.org"> debian-devel@&lists-host;"> debian-devel-announce@&lists-host;"> @@ -140,20 +148,19 @@ ftpmaster@debian.org"> override-change@debian.org"> wnpp@debian.org"> -control@bugs.debian.org"> +control@&bugs-host;"> team@security.debian.org"> /usr/share/doc/debian/mailing-lists.txt"> -/usr/share/doc/debian/bug-log-mailserver.txt"> -/usr/share/doc/debian/bug-maint-info.txt"> /usr/share/doc/debian/bug-*"> /usr/share/doc/python/python-policy.txt.gz"> /usr/share/doc/ocaml/ocaml_packaging_policy.gz"> +/usr/share/doc/common-lisp-controller/README.packaging"> /usr/share/doc/autotools-dev/README.Debian.gz"> -address" | mail request@bugs.debian.org'> +address" | mail request@&bugs-host;'> Format @@ -236,3 +243,16 @@ pool/non-free/n/ pool/non-free/n/netscape/ ... "> + +pathfind() { + OLDIFS="$IFS" + IFS=: + for p in $PATH; do + if [ -x "$p/$*" ]; then + IFS="$OLDIFS" + return 0 + fi + done + IFS="$OLDIFS" + return 1 +}'>