diff --git a/extra/build-support/build-support.factor b/extra/build-support/build-support.factor index 177042e186d..7d32b2da53f 100644 --- a/extra/build-support/build-support.factor +++ b/extra/build-support/build-support.factor @@ -1,10 +1,13 @@ ! Copyright (C) 2010 Doug Coleman. ! See http://factorcode.org/license.txt for BSD license. -USING: arrays io io.backend io.encodings.utf8 io.launcher ; +USING: accessors arrays calendar io io.backend io.encodings.utf8 +io.launcher ; IN: build-support CONSTANT: factor.sh-path "resource:build-support/factor.sh" : factor.sh-make-target ( -- string ) - factor.sh-path normalize-path "make-target" 2array + + factor.sh-path normalize-path "make-target" 2array >>command + 10 seconds >>timeout utf8 [ readln ] with-process-reader ;