diff options
author | Dylan Baker <dylan@pnwbakers.com> | 2023-06-21 11:47:15 -0700 |
---|---|---|
committer | Dylan Baker <dylan@pnwbakers.com> | 2023-06-21 11:47:15 -0700 |
commit | 03d0b467804bf033c2be259be3f091231f74cff9 (patch) | |
tree | cc9780af629e5c666611bb7877cb6855af5fcfb9 | |
parent | c047e86b0a51cfec1d3a6939fe76e27354be2149 (diff) |
gitlab-ci: remove unnecessary call to `meson configure`
-rw-r--r-- | .gitlab-ci.yml | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 9b9c7e0..e81d4c9 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -152,8 +152,7 @@ compare meson and autotools: # the prefix ends up in the pkgconfig files, so we use a symlink # to use the same --prefix for meson and autotools - ln -sf $PWD/_meson_inst $PWD/_inst - - meson setup builddir - - meson configure builddir --prefix=$PWD/_inst + - meson setup builddir --prefix=$PWD/_inst - ninja -C builddir install - ls -R _inst > _meson_inst.ls - rm $PWD/_inst |