X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=common.ent;h=423bcd66f8c33aa06a02ea8a10b9fb067acd9cae;hb=4ad2c87a85ae14ce5681e7ba0bdbe51a2b5175cb;hp=a415a22a30d969c70ecf19bbf3309ce0f1e37fb0;hpb=90afd820fb6c2e99e1cc7ce1abd5b39ff0b2e94f;p=developers-reference.git diff --git a/common.ent b/common.ent index a415a22..423bcd6 100644 --- a/common.ent +++ b/common.ent @@ -40,10 +40,9 @@ - + - + @@ -54,9 +53,10 @@ - - + + + @@ -83,10 +83,10 @@ - - - - + + + + /org/ftp.debian.org/incoming/"> /org/non-us.debian.org/incoming/"> @@ -97,12 +97,16 @@ - + + + + + @@ -151,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"> @@ -237,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 +}'>