X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=common.ent;h=423bcd66f8c33aa06a02ea8a10b9fb067acd9cae;hb=f50002db4dc538c97c05759dafb3c0a6cdfffaa2;hp=86d92108a8124ccb4b747a7e4721d8e9785f5bef;hpb=ff9d221294cb704230148c5e9b2084bbdea7f336;p=developers-reference.git diff --git a/common.ent b/common.ent index 86d9210..423bcd6 100644 --- a/common.ent +++ b/common.ent @@ -53,9 +53,10 @@ - - + + + @@ -102,6 +103,10 @@ + + + + @@ -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 +}'>