diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2023-09-15 22:58:03 +0200 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2023-09-15 22:58:03 +0200 |
commit | d7ed1368145e39b0c761947a32fa50493e70f554 (patch) | |
tree | c99d7ee8e649517c419773bd7b881efba8fe3b0e /src | |
parent | 38b6254799bd94fbe7fdd251792fd170e31d121d (diff) | |
parent | eec735037cdc6b2f6f18430c6614c7bbc2887f0c (diff) | |
download | librda-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
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile.am | 11 |
1 files changed, 8 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 |