From: Mike Brady Date: Tue, 24 Oct 2017 09:29:43 +0000 (+0100) Subject: Correct a Makefile bug that was silent in Linux but caused problems in FreeBSD X-Git-Tag: 3.2d13~32 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=588c551baee8f1e8539d75853bf8dc35be836ab3;p=thirdparty%2Fshairport-sync.git Correct a Makefile bug that was silent in Linux but caused problems in FreeBSD --- diff --git a/dbus/data/Makefile.am b/dbus/data/Makefile.am index f09ec92a..22685d88 100644 --- a/dbus/data/Makefile.am +++ b/dbus/data/Makefile.am @@ -8,7 +8,7 @@ EXTRA_DIST = $(service_in_files) # Rule to make the service file with bindir expanded $(service_DATA): $(service_in_files) Makefile - @sed -e "s|\@bindir\@|$(bindir)|" $<> $@ + @sed -e "s|\@bindir\@|$(bindir)|" $? > $@ clean-local: rm -rf $(service_DATA)