Commit 5306fc93 authored by Gregory Detal's avatar Gregory Detal

protobuf-c: fix: make dist

remove .pb.{cc,h} in distdir instead of top_distdir in order to
prevent removing files from other projects when protobuf-c is
included as an autotools subproject.
Signed-off-by: default avatarGregory Detal <gregory.detal@tessares.net>
parent 006d69bd
...@@ -198,7 +198,7 @@ EXTRA_DIST += \ ...@@ -198,7 +198,7 @@ EXTRA_DIST += \
CLEANFILES += $(BUILT_SOURCES) CLEANFILES += $(BUILT_SOURCES)
dist-hook: dist-hook:
rm -vf `find $(top_distdir) -name '*.pb-c.[ch]' -o -name '*.pb.cc' -o -name '*.pb.h'` rm -vf `find $(distdir) -name '*.pb-c.[ch]' -o -name '*.pb.cc' -o -name '*.pb.h'`
install-data-hook: install-data-hook:
$(MKDIR_P) $(DESTDIR)$(includedir)/google/protobuf-c $(MKDIR_P) $(DESTDIR)$(includedir)/google/protobuf-c
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment