We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ad09803 commit 65b0164Copy full SHA for 65b0164
.gitlab-ci.yml
@@ -20,8 +20,11 @@
20
BASE_CONFIG: "--with-ftp --with-legacy --with-xptr-locs"
21
script:
22
- |
23
+ rm -rf build
24
+ mkdir build
25
+ cd build
26
ln -s /tests/xmlconf
- sh autogen.sh $BASE_CONFIG $CONFIG
27
+ sh ../autogen.sh $BASE_CONFIG $CONFIG
28
make -j$(nproc) V=1 CFLAGS="$CFLAGS -Werror"
29
make CFLAGS="$CFLAGS -Werror" check
30
autogen.sh
@@ -1,11 +1,10 @@
1
#!/bin/sh
2
# Run this to generate all the initial makefiles, etc.
3
4
-srcdir=`dirname $0`
5
-test -z "$srcdir" && srcdir=.
6
-
7
THEDIR=`pwd`
8
-cd $srcdir
+cd `dirname $0`
+srcdir=`pwd`
+
9
DIE=0
10
11
(autoconf --version) < /dev/null > /dev/null 2>&1 || {
0 commit comments