From b75058fd36cfa44baf93af51e5535e5cd29082b0 Mon Sep 17 00:00:00 2001 From: Anderson Lizardo Date: Fri, 21 Dec 2012 12:25:03 -0400 Subject: [PATCH] build: Fix installing udev rules file when $(srcdir) != $(builddir) Path to files on source tree should be prefixed with $(srcdir), otherwise they are not found if $(srcdir) != $(builddir). --- Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.am b/Makefile.am index e2cf3a66f..9337ffafa 100644 --- a/Makefile.am +++ b/Makefile.am @@ -280,7 +280,7 @@ src/builtin.h: src/genbuiltin $(builtin_sources) $(AM_V_GEN)$(srcdir)/src/genbuiltin $(builtin_modules) > $@ tools/%.rules: - $(AM_V_GEN)cp $(subst 97-,,$@) $@ + $(AM_V_GEN)cp $(srcdir)/$(subst 97-,,$@) $@ $(lib_libbluetooth_la_OBJECTS): $(local_headers) -- 2.47.3