Skip to content

Commit 124cd4d

Browse files
committed
More fixes for distcheck target
1 parent 740172d commit 124cd4d

3 files changed

Lines changed: 11 additions & 11 deletions

File tree

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ os:
1212
- linux
1313
- osx
1414
before_install:
15-
- if [ ${TRAVIS_OS_NAME} = "linux" ]; then sudo apt-get update -qq; sudo apt-get install -y autoconf automake m4 libtool doxygen doxygen-latex liblua5.1-0-dev libdumbnet-dev; fi
15+
- if [ ${TRAVIS_OS_NAME} = "linux" ]; then sudo apt-get update -qq; sudo apt-get install -qq autoconf automake m4 libtool doxygen doxygen-latex liblua5.1-0-dev libdumbnet-dev; fi
1616
- if [ ${TRAVIS_OS_NAME} = "osx" ]; then brew update; brew install doxygen lua@5.1 libdnet; fi
1717
install: cd libnet && ../Prepare && ../Build
1818
after_success:

libnet/Makefile.am

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
# Process this file with automake to produce a Makefile.in script.
77

88

9-
DISTCHECK_CONFIGURE_FLAGS = \
10-
--enable-doxygen-doc \
11-
--disable-samples
9+
#DISTCHECK_CONFIGURE_FLAGS = \
10+
# --enable-doxygen-doc \
11+
# --disable-samples
1212

1313
# Include macros implemented in the directory m4
1414
ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS}
@@ -62,12 +62,12 @@ APIDOCS = $(top_srcdir)/doc/api/*.html \
6262
$(top_srcdir)/doc/api/*.css \
6363
$(top_srcdir)/doc/api/*.png
6464

65-
APIDOC_DEPS = doc/libnet.doxygen.conf \
66-
doc/libnet.Pod \
67-
doc/libnet-config.Pod \
68-
doc/libnet_api_header.html_tmpl \
69-
doc/libnet_api_footer.html_tmpl \
70-
doc/libnet_api_stylesheet.css_tmpl
65+
APIDOC_DEPS = $(top_srcdir)/doc/libnet.doxygen.conf \
66+
$(top_srcdir)/doc/libnet.Pod \
67+
$(top_srcdir)/doc/libnet-config.Pod \
68+
$(top_srcdir)/doc/libnet_api_header.html_tmpl \
69+
$(top_srcdir)/doc/libnet_api_footer.html_tmpl \
70+
$(top_srcdir)/doc/libnet_api_stylesheet.css_tmpl
7171

7272
dist_doc_DATA = doc/CHANGELOG \
7373
doc/CONTRIB \

libnet/configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ DX_RTF_FEATURE(OFF)
188188
DX_XML_FEATURE(OFF)
189189
DX_PDF_FEATURE(ON)
190190
DX_PS_FEATURE(OFF)
191-
DX_INIT_DOXYGEN(${PACKAGE_NAME}, [doc/libnet.doxygen.conf], [doc])
191+
DX_INIT_DOXYGEN(${PACKAGE_NAME}, [${ac_top_srcdir}/doc/libnet.doxygen.conf], [doc])
192192
AM_CONDITIONAL(ENABLE_DOXYGEN,[test "x${DX_FLAG_doc}" = x1])
193193

194194
if test ${DX_FLAG_doc} -eq 1; then

0 commit comments

Comments
 (0)