diff options
| author | Théo Zimmermann | 2018-09-02 11:01:10 +0200 |
|---|---|---|
| committer | Théo Zimmermann | 2018-09-02 11:02:39 +0200 |
| commit | 42b84104e9a3278c024a9d70e0cb32e3d277a8ae (patch) | |
| tree | 2b3532ea06967cae62d12f971e69361d9d9ab7a9 /dev | |
| parent | 74ae2fa27c65030e80dc42abd36a6bf0af40e91d (diff) | |
Fix the order of sourcing of overlays in Windows build script as well.
Diffstat (limited to 'dev')
| -rw-r--r-- | dev/build/windows/makecoq_mingw.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dev/build/windows/makecoq_mingw.sh b/dev/build/windows/makecoq_mingw.sh index 60108cda4f..8a49b97dac 100644 --- a/dev/build/windows/makecoq_mingw.sh +++ b/dev/build/windows/makecoq_mingw.sh @@ -1448,10 +1448,10 @@ function make_addons { export CI_BRANCH="" export CI_PULL_REQUEST="" fi - . /build/ci-basic-overlay.sh for overlay in /build/user-overlays/*.sh; do . "$overlay" done + . /build/ci-basic-overlay.sh for addon in $COQ_ADDONS; do "make_addon_$addon" |
