X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=developers-reference.git;a=blobdiff_plain;f=common.ent;h=423bcd66f8c33aa06a02ea8a10b9fb067acd9cae;hp=d43ac1ecc9eabfbd0e15750ec43b17e7dd68026d;hb=a575c4eb7334f4cb6c624fc8057bf2d92186fb59;hpb=e22ed8f4833f5a95c8b09504c2b19e93709c1120 diff --git a/common.ent b/common.ent index d43ac1e..423bcd6 100644 --- a/common.ent +++ b/common.ent @@ -39,11 +39,10 @@ - - + + - + @@ -52,10 +51,12 @@ - - - + + + + + @@ -82,10 +83,10 @@ - - - - + + + + /org/ftp.debian.org/incoming/"> /org/non-us.debian.org/incoming/"> @@ -96,12 +97,16 @@ - + + + + + @@ -150,6 +155,7 @@ /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"> @@ -236,3 +242,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 +}'>