From b7fc86c72db6177f115d448c01526b42315f4e78 Mon Sep 17 00:00:00 2001 From: Guillaume Revaillot Date: Thu, 30 May 2019 20:07:29 +0200 Subject: [PATCH] doc: oops, no need to call sed -s, unbreak make doc on os x Not sure how/why i pushed thqt, absolutely no need to call sed with -s parameter. Fix build on os x / systems running non gnu sed. --- doc/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/Makefile b/doc/Makefile index d662c984..8d42867f 100644 --- a/doc/Makefile +++ b/doc/Makefile @@ -34,7 +34,7 @@ $(1)/doxy.sourcelist: $(1)/ @../scripts/gendoxylist ../lib/$(TARGET_SRC_DIR) $(1) $(1)/Doxyfile: templates/Doxyfile_Device | $(1)/ - @cat $$< | sed -s s/#device#/$(1)/g > $$@ + @cat $$< | sed s/#device#/$(1)/g > $$@ $(1)/DoxygenLayout_$(1).xml: templates/DoxygenLayout_Device.xml | $(1)/ @../scripts/gendoxylayout.py --template $$< --out $$@ --target $(1) $$(TARGETS_DIRS)