Makefile: Avoid complaining about .first-build-message not existing

This cleans up a few spurious warnings from the build.
This commit is contained in:
Carl Worth 2010-04-16 12:10:23 -07:00
parent b068f1cc84
commit 9b065ff3b2

View file

@ -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:"