From: Dmitrij D. Czarkoff <czarkoff@gmail.com>
Date: Thu, 25 Jun 2015 20:27:47 +0000 (+0200)
Subject: Wrong order of blocks within ifeq-endif
X-Git-Url: https://git.owens.tech/112-editable-focus.html/112-editable-focus.html/git?a=commitdiff_plain;h=4f20562d5bf5b6f14681ba59a11ceacb9f393498;p=vimb.git

Wrong order of blocks within ifeq-endif
---

diff --git a/src/Makefile b/src/Makefile
index 8fb0c87..233818b 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -32,10 +32,10 @@ endif
 
 $(LIBTARGET): $(LOBJ)
 ifeq ($(VERBOSE),0)
-	$(CC) -shared ${LOBJ} -o $@ $(LDFLAGS)
-else
 	@echo "$(CC) $@"
 	@$(CC) -shared ${LOBJ} -o $@ $(LDFLAGS)
+else
+	$(CC) -shared ${LOBJ} -o $@ $(LDFLAGS)
 endif
 
 config.h: