From: Kéléfa Sané <[email protected]> Add missing $ (Makefile need to escape '$' as '$$')
Signed-off-by: Yoann Congal <[email protected]> Signed-off-by: Sofiane HAMAM <[email protected]> Signed-off-by: Kelefa Sane <[email protected]> --- libdmmp/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libdmmp/Makefile b/libdmmp/Makefile index 172ba045..7e0e2509 100644 --- a/libdmmp/Makefile +++ b/libdmmp/Makefile @@ -74,7 +74,7 @@ doc: docs/man/dmmp_strerror.3 docs/man/dmmp_strerror.3: $(HEADERS) $(Q)TEMPFILE=$(shell mktemp); \ cat $^ | perl docs/doc-preclean.pl >$$TEMPFILE; \ - [ "$KBUILD_BUILD_TIMESTAMP" ] || \ + [ "$$KBUILD_BUILD_TIMESTAMP" ] || \ KBUILD_BUILD_TIMESTAMP=`git log -n1 --pretty=%cd --date=iso -- $^`; \ export KBUILD_BUILD_TIMESTAMP; \ LC_ALL=C \
