summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Gabriel <mike.gabriel@das-netzwerkteam.de>2023-09-15 22:58:03 +0200
committerMike Gabriel <mike.gabriel@das-netzwerkteam.de>2023-09-15 22:58:03 +0200
commitd7ed1368145e39b0c761947a32fa50493e70f554 (patch)
treec99d7ee8e649517c419773bd7b881efba8fe3b0e
parent38b6254799bd94fbe7fdd251792fd170e31d121d (diff)
parenteec735037cdc6b2f6f18430c6614c7bbc2887f0c (diff)
downloadlibrda-d7ed1368145e39b0c761947a32fa50493e70f554.tar.gz
librda-d7ed1368145e39b0c761947a32fa50493e70f554.tar.bz2
librda-d7ed1368145e39b0c761947a32fa50493e70f554.zip
Merge branch 'Ionic-bugfix/fix-distcheck'
Attributes GH PR #7: https://github.com/ArcticaProject/librda/pull/7
-rw-r--r--src/Makefile.am11
-rw-r--r--util/Makefile.am1
2 files changed, 9 insertions, 3 deletions
diff --git a/src/Makefile.am b/src/Makefile.am
index 55e477b..e0ac275 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -19,7 +19,6 @@ BUILT_SOURCES += $(st_file)
librdaincludedir = $(includedir)/rda
librdainclude_HEADERS = \
- rda_supported_technologies.h \
rda_ogon.h \
rda_protocol.h \
rda_util.h \
@@ -27,6 +26,10 @@ librdainclude_HEADERS = \
rda.h \
$(NULL)
+nodist_librdainclude_HEADERS = \
+ $(st_file) \
+ $(NULL)
+
librda_la_SOURCES = \
rda.c \
rda_x2go.c \
@@ -53,8 +56,10 @@ INTROSPECTION_SCANNER_ARGS = --add-include-path=$(srcdir) --warn-all
INTROSPECTION_COMPILER_ARGS = --includedir=$(srcdir)
if HAVE_INTROSPECTION
-introspection_sources = $(librdainclude_HEADERS) \
- $(librda_la_SOURCES) \
+introspection_sources = \
+ $(librdainclude_HEADERS) \
+ $(nodist_librdainclude_HEADERS) \
+ $(librda_la_SOURCES) \
$(NULL)
rda-1.0.gir: librda.la
diff --git a/util/Makefile.am b/util/Makefile.am
index 8d1d792..6414939 100644
--- a/util/Makefile.am
+++ b/util/Makefile.am
@@ -13,6 +13,7 @@ rdacheck_CFLAGS = \
-Wall -Werror \
$(LIBRDA_CFLAGS) \
-I$(top_srcdir)/src/ \
+ -I../src \
-DBUILD_DIR="\"$(builddir)\"" \
$(NULL)