Skip to content
Snippets Groups Projects
Commit bfbfb3a7 authored by Sergey Kosukhin's avatar Sergey Kosukhin
Browse files

Add autogen.sh

parent 330692fe
No related branches found
No related tags found
1 merge request!41Upgrade the build system
......@@ -134,6 +134,7 @@ include:
}
fi
script:
- test -f ./configure || ./autogen.sh
- mkdir build && cd build
- ../configure --with-check-root="${LIBCHEK_ROOT}" ${CONFIG_EXTRA_ARGS}
- make --output-sync=target check AM_COLOR_TESTS=no TESTS= 2> >(tee ${WARNINGS_FILE})
......
#!/bin/sh
# Copyright (c) 2013-2024 MPI-M, Luis Kornblueh, Rahul Sinha and DWD, Florian Prill. All rights reserved.
#
# SPDX-License-Identifier: BSD-3-Clause
set -e
script_dir=`echo "$0" | sed 's@[^/]*$@@'`
(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
cd "$script_dir"
exec autoreconf -fvi
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment