Codebase list cl-portable-aserve / d2c3df7
examples.patch: new patch, fixes location of examples on the filesystem Sébastien Villemot 5 years ago
3 changed file(s) with 20 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
1212 * Register all HTML documents into doc-base
1313 * Drop "cl-" prefix in directories under /u/s/common-lisp/source/, for
1414 consistency with other packages
15 * examples.patch: new patch, fixes location of examples on the filesystem
1516
1617 -- Sébastien Villemot <sebastien@debian.org> Wed, 13 Feb 2019 10:41:59 +0100
1718
0 Description: Adapt to path of examples on a Debian system
1 Author: Sébastien Villemot <sebastien@debian.org>
2 Forwarded: not-needed
3 Last-Update: 2019-02-15
4 ---
5 This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
6 --- a/aserve/test/t-aserve.cl
7 +++ b/aserve/test/t-aserve.cl
8 @@ -53,8 +53,7 @@
9
10 (eval-when (compile eval load)
11 (defvar *aserve-examples-directory*
12 - (or (cl-fad:directory-exists-p "aserve/examples/")
13 - (cl-fad:directory-exists-p "examples/")
14 + (or (cl-fad:directory-exists-p "/usr/share/doc/cl-aserve/examples/")
15 (error "Could not find the aserve examples directory.")))
16 )
17
0 examples.patch