Skip to content

Commit 17e70d9

Browse files
committedJul 19, 2017
Disable gtk-doc for make distcheck on CIs
1 parent acfa485 commit 17e70d9

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed
 

‎.gitlab-ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Debian GNU/Linux:
2424
- make clean
2525
- ./configure -C --enable-gtk-doc --enable-gtk-doc-pdf --disable-gcc-warnings --disable-valgrind-tests
2626
- make
27-
- make distcheck
27+
- DISTCHECK_CONFIGURE_FLAGS=--disable-gtk-doc make distcheck
2828
tags:
2929
- shared
3030
artifacts:

‎.travis.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,4 @@ for OPTS in "${CONFIGURE_OPTIONS[@]}"; do
2828
make clean check -j3 || (cat tests/test-suite.log && exit 1)
2929
done
3030

31-
make distcheck -j3
31+
DISTCHECK_CONFIGURE_FLAGS=--disable-gtk-doc make distcheck -j3

‎Makefile.am

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
# You should have received a copy of the GNU General Public License
1414
# along with this program. If not, see <http://www.gnu.org/licenses/>.
1515

16-
DISTCHECK_CONFIGURE_FLAGS = --enable-gtk-doc
16+
DISTCHECK_CONFIGURE_FLAGS ?= --enable-gtk-doc
1717

1818
SUBDIRS =
1919

0 commit comments

Comments
 (0)
Please sign in to comment.