doc/examples/Makefile.am: add sgsnemu.conf

Related: OS#3209
Change-Id: Icd6f3efcf5a9ef50237a3d0a76d4cce55051f447
This commit is contained in:
Oliver Smith 2021-03-01 14:25:30 +01:00
parent 18898b4a9f
commit 303aeea8a8
2 changed files with 9 additions and 3 deletions

View File

@ -109,6 +109,7 @@ make %{?_smp_mflags} check || (find . -name testsuite.log -exec cat {} +)
%{_unitdir}/%{name}.service
%dir %{_docdir}/%{name}/examples
%{_docdir}/%{name}/examples/osmo-ggsn.cfg
%{_docdir}/%{name}/examples/sgsnemu.conf
%dir %{_sysconfdir}/osmocom
%config(noreplace) %{_sysconfdir}/osmocom/osmo-ggsn.cfg

View File

@ -1,9 +1,14 @@
OSMOCONF_FILES = \
osmo-ggsn.cfg \
sgsnemu.conf \
$(NULL)
osmoconfdir = $(sysconfdir)/osmocom
osmoconf_DATA = osmo-ggsn.cfg
osmoconf_DATA = $(OSMOCONF_FILES)
EXTRA_DIST = osmo-ggsn.cfg
EXTRA_DIST = $(OSMOCONF_FILES)
CFG_FILES = find $(srcdir) -name '*.cfg*' | sed -e 's,^$(srcdir),,'
CFG_FILES = find $(srcdir) -name '*.cfg' -o -name '*.conf' | sed -e 's,^$(srcdir),,'
dist-hook:
for f in $$($(CFG_FILES)); do \