aboutsummaryrefslogtreecommitdiff
path: root/contrib/extraction/test/extract.haskell
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/extraction/test/extract.haskell')
-rwxr-xr-xcontrib/extraction/test/extract.haskell3
1 files changed, 1 insertions, 2 deletions
diff --git a/contrib/extraction/test/extract.haskell b/contrib/extraction/test/extract.haskell
index 84cde78d47..3f4a59d490 100755
--- a/contrib/extraction/test/extract.haskell
+++ b/contrib/extraction/test/extract.haskell
@@ -3,8 +3,7 @@ rm -f /tmp/extr$$.v
vfile=`./hs2v $1`
d=`dirname $vfile`
n=`basename $vfile .v`
-cat custom/all > /tmp/extr$$.v
-if [ -e custom/$n ]; then cat custom/$n >> /tmp/extr$$.v; fi
+if [ -e custom/$n ]; then cat custom/$n > /tmp/extr$$.v; fi
echo "Cd \"$d\". Extraction Language Haskell. Extraction Module $n. " >> /tmp/extr$$.v
../../../bin/coqtop.opt -silent -batch -require $n -load-vernac-source /tmp/extr$$.v
out=$?