mirror of
https://gitlab.freedesktop.org/dbus/dbus.git
synced 2025-12-30 00:10:09 +01:00
Merge branch 'dist-30285' into dbus-1.4
Reviewed-by: Will Thompson <will.thompson@collabora.co.uk>
This commit is contained in:
commit
a0e8ae3b77
2 changed files with 13 additions and 2 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
|
@ -33,3 +33,5 @@ config.h.in
|
|||
*.da
|
||||
*.gcov
|
||||
tags
|
||||
/dbus-1.*/
|
||||
/dbus-1.*.tar.*
|
||||
|
|
|
|||
|
|
@ -115,8 +115,17 @@ dist-hook:
|
|||
done ; \
|
||||
FILES=`(cd $(srcdir) && $(FIND_TESTS) -o -name "*.in" -a -not -name Makefile.in | grep -Ev "(.svn|CVS)" )` ; \
|
||||
for F in $$FILES; do \
|
||||
echo '-- Disting file '$$F ; \
|
||||
cp -f $(srcdir)/$$F $(distdir)/$$F || exit 1 ; \
|
||||
B=`basename $$F`; \
|
||||
if test -e $$F.in; then \
|
||||
echo "-- Skipping file $$F (.in version exists)"; \
|
||||
elif test "x$$B" = xrun-with-tmp-session-bus.conf; then \
|
||||
echo "-- Skipping file $$F (generated)"; \
|
||||
elif test -e "$(top_srcdir)/bus/$$B"; then \
|
||||
echo "-- Skipping file $$F (from /bus/)"; \
|
||||
else \
|
||||
echo '-- Disting file '$$F ; \
|
||||
cp -f $(srcdir)/$$F $(distdir)/$$F || exit 1; \
|
||||
fi; \
|
||||
done
|
||||
|
||||
## copy tests to builddir so that generated tests and static tests
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue