]> gitweb.factorcode.org Git - factor.git/commitdiff
tools.deploy.backend: use alien.libraries.finder.
authorJohn Benediktsson <mrjbq7@gmail.com>
Mon, 15 Mar 2021 19:34:25 +0000 (12:34 -0700)
committerJohn Benediktsson <mrjbq7@gmail.com>
Mon, 15 Mar 2021 19:34:25 +0000 (12:34 -0700)
basis/tools/deploy/backend/backend.factor

index 3b424823d545f972759dfaa00ad46ee316332321..5e09bbcdca937e384c048522185fe7b8182338f0 100644 (file)
@@ -1,10 +1,11 @@
 ! Copyright (C) 2007, 2010 Slava Pestov.
 ! See http://factorcode.org/license.txt for BSD license.
-USING: accessors assocs bootstrap.image hashtables io io.directories
-io.encodings.utf8 io.files io.files.temp io.launcher io.pathnames
-kernel locals make namespaces prettyprint sequences splitting system
-tools.deploy.config tools.deploy.config.editor tools.deploy.embed
-tools.deploy.libraries vocabs.loader vocabs.metadata.resources
+USING: accessors alien.libraries.finder assocs bootstrap.image
+hashtables io io.directories io.encodings.utf8 io.files
+io.files.temp io.launcher io.pathnames kernel locals make
+namespaces prettyprint sequences splitting system
+tools.deploy.config tools.deploy.config.editor
+tools.deploy.embed vocabs.loader vocabs.metadata.resources
 webbrowser ;
 IN: tools.deploy.backend
 
@@ -19,7 +20,7 @@ TUPLE: vocab-manifest vocabs libraries ;
 ERROR: can't-deploy-library-file library ;
 
 : copy-library ( dir library -- )
-    dup find-library-file
+    dup find-library*
     [ tuck file-name append-path copy-file ]
     [ can't-deploy-library-file ] ?if ;