git.fiddlerwoaroof.com
Browse code

The compiler is only called when yaml_wrapper.so is not present

Fernando Borretti authored on 26/10/2013 18:31:09
Showing 1 changed files
... ...
@@ -12,7 +12,10 @@
12 12
     (list
13 13
       (make-pathname :name "yaml_wrapper"
14 14
                      :type #+unix "so" #+darwin "dylib" #+windows "dll"
15
-                     :defaults (component-pathname f))) t))
15
+                     :defaults
16
+                     (merge-pathnames
17
+                      (make-pathname :directory '(:relative :up))
18
+                      (component-pathname f)))) t))
16 19
 
17 20
 (defmethod perform ((o load-op) (c c->so)) t)
18 21