From 778b577bec6cc3a27af29e10171dba1a01f9443a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Denis-Courmont?= Date: Fri, 26 Jul 2019 21:13:59 +0300 Subject: [PATCH] compat: provide dummy.c, simplify Makefile --- compat/.gitignore | 1 - compat/Makefile.am | 2 -- compat/dummy.c | 1 + 3 files changed, 1 insertion(+), 3 deletions(-) delete mode 100644 compat/.gitignore create mode 100644 compat/dummy.c diff --git a/compat/.gitignore b/compat/.gitignore deleted file mode 100644 index 1684c26dfb..0000000000 --- a/compat/.gitignore +++ /dev/null @@ -1 +0,0 @@ -dummy.c diff --git a/compat/Makefile.am b/compat/Makefile.am index cc1d33bb59..fb33c17e00 100644 --- a/compat/Makefile.am +++ b/compat/Makefile.am @@ -3,8 +3,6 @@ libcompat_la_SOURCES = dummy.c libcompat_la_LIBADD = $(LTLIBOBJS) $(LIBRT) $(LIBM) libcompat_la_LDFLAGS = -no-undefined -static -BUILT_SOURCES = dummy.c -CLEANFILES = dummy.c AUTOMAKE_OPTIONS = subdir-objects dummy.c: diff --git a/compat/dummy.c b/compat/dummy.c new file mode 100644 index 0000000000..6f5d5543d0 --- /dev/null +++ b/compat/dummy.c @@ -0,0 +1 @@ +/* Intentionally left empty */