diff options
author | Thomas Haller <thaller@redhat.com> | 2024-05-06 09:22:14 (GMT) |
---|---|---|
committer | Thomas Haller <thaller@redhat.com> | 2024-05-06 09:28:09 (GMT) |
commit | 691202bf0f8766e892c76b4ffd4042bbacf574aa (patch) | |
tree | 0c07a8809c912d47ee582db2d022f719bd094120 | |
parent | 15d90cbf8ced5b89a596e6435b29fb350e4db9db (diff) | |
download | libnl-691202bf0f8766e892c76b4ffd4042bbacf574aa.zip libnl-691202bf0f8766e892c76b4ffd4042bbacf574aa.tar.gz libnl-691202bf0f8766e892c76b4ffd4042bbacf574aa.tar.bz2 |
tests: don't use $COMPILE for building header tests
-rw-r--r-- | Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index e86921d..3d8d41a 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1139,7 +1139,7 @@ EXTRA_DIST += \ printf "#include <$$(echo "$<" | sed 's|.*\<include/netlink/|netlink/|')>\nint main(void) { return 0; }" > $@ %.build-headers-test.o: %.build-headers-test.c - $(COMPILE) -Wall -Werror -D_NL_NO_WARN_DEPRECATED_HEADER -I$(srcdir)/include -I$(builddir)/include -c -o $@ $< + $(CC) -Wall -Werror -D_NL_NO_WARN_DEPRECATED_HEADER -I$(srcdir)/include -I$(builddir)/include -c -o $@ $< BUILD_HEADERS_OBJS = $(patsubst %,%.build-headers-test.o,$(public_headers)) |