From 9b065ff3b2d38b72accc98e283db0d81bf1047ed Mon Sep 17 00:00:00 2001 From: Carl Worth Date: Fri, 16 Apr 2010 12:10:23 -0700 Subject: [PATCH] Makefile: Avoid complaining about .first-build-message not existing This cleans up a few spurious warnings from the build. --- Makefile.local | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.local b/Makefile.local index 51a83a8c..f497b6cb 100644 --- a/Makefile.local +++ b/Makefile.local @@ -42,7 +42,7 @@ FINAL_LIBNOTMUCH_LDFLAGS = $(LDFLAGS) $(CONFIGURE_LDFLAGS) .PHONY: all all: notmuch notmuch-shared notmuch.1.gz ifeq ($(MAKECMDGOALS),) -ifeq ($(shell cat .first-build-message),) +ifeq ($(shell cat .first-build-message 2>/dev/null),) @NOTMUCH_FIRST_BUILD=1 $(MAKE) --no-print-directory all @echo "" @echo "Compilation of notmuch is now complete. You can install notmuch with:" -- 2.43.0