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=203ee2aa707c474032de520cb828017c3c7ce300;hb=a575c4eb7334f4cb6c624fc8057bf2d92186fb59;hpb=d435c3ecc576c1551bba2714b96c839ac30397e1 diff --git a/common.ent b/common.ent index 203ee2a..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 @@ - + + + + + @@ -111,7 +116,7 @@ - + listmaster@&lists-host;"> @@ -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 +}'>