Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix issues flagged by Lintian. #200

Merged
merged 9 commits into from
Jan 28, 2022
Prev Previous commit
src: Install libmptcpwrap in ${libdir}/mptcpize.
Install the libmptcpwrap library in a ${libdir}/mptcpize instead of
${libdir}/mptcpd to differentiate it from mptcpd plugins.

Closes #202.
  • Loading branch information
Ossama Othman committed Jan 26, 2022
commit db03bd99d716e7582f3293d62fd4b11b265fd2b8
5 changes: 3 additions & 2 deletions src/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,8 @@ else
bin_PROGRAMS = mptcpd mptcpize
endif

pkglib_LTLIBRARIES = libmptcpwrap.la
mptcpizelibdir = $(libdir)/mptcpize
mptcpizelib_LTLIBRARIES = libmptcpwrap.la

mptcpd_SOURCES = mptcpd.c
mptcpd_LDADD = \
Expand All @@ -75,7 +76,7 @@ librevision=1
mptcpize_SOURCES = mptcpize.c
mptcpize_CPPFLAGS = \
$(AM_CPPFLAGS) \
-DPKGLIBDIR=\"$(pkglibdir)\" \
-DPKGLIBDIR=\"$(mptcpizelibdir)\" \
-DLIBREVISION=\"$(librevision)\"
mptcpize_LDADD = $(CODE_COVERAGE_LIBS)
mptcpize_LDFLAGS = $(EXECUTABLE_LDFLAGS)
Expand Down