Skip to content
Snippets Groups Projects
Commit 7de7991f authored by François Bobot's avatar François Bobot
Browse files

Make pinning the git repository work

parent e259438a
No related branches found
No related tags found
No related merge requests found
#!/bin/sh -eux
if [ ! -f "configure" ]; then
autoconf
automake --add-missing || true
fi
...@@ -24,6 +24,9 @@ tags: [ ...@@ -24,6 +24,9 @@ tags: [
available: [ ocaml-version >= "4.02.3" ] available: [ ocaml-version >= "4.02.3" ]
build: [ build: [
["sh" "-eux" "./run_autoconf_if_needed.sh"] # when used in pinned mode,
# the configure *cannot* yet be
# generated
["./configure" ["./configure"
"--prefix" prefix "--prefix" prefix
"--disable-why3-lib" "--disable-why3-lib"
......
#!/bin/sh -eux
if [ ! -f "configure" ]; then
autoconf
automake --add-missing || true
fi
...@@ -24,6 +24,9 @@ tags: [ ...@@ -24,6 +24,9 @@ tags: [
available: [ ocaml-version >= "4.02.3" ] available: [ ocaml-version >= "4.02.3" ]
build: [ build: [
["sh" "-eux" "./run_autoconf_if_needed.sh"] # when used in pinned mode,
# the configure *cannot* yet be
# generated
["./configure" ["./configure"
"--prefix" prefix "--prefix" prefix
"--disable-why3-lib" "--disable-why3-lib"
......
#!/bin/sh -eux
if [ ! -f "configure" ]; then
autoconf
automake --add-missing || true
fi
...@@ -24,6 +24,9 @@ tags: [ ...@@ -24,6 +24,9 @@ tags: [
available: [ ocaml-version >= "4.02.3" ] available: [ ocaml-version >= "4.02.3" ]
build: [ build: [
["sh" "-eux" "./run_autoconf_if_needed.sh"] # when used in pinned mode,
# the configure *cannot* yet be
# generated
["./configure" ["./configure"
"--prefix" prefix "--prefix" prefix
"--disable-frama-c" "--disable-frama-c"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment