From d1bf2fc3a836c3818eba63d1890c65ee0a7d61bd Mon Sep 17 00:00:00 2001 From: rrt Date: Wed, 3 Oct 2001 15:30:57 +0000 Subject: [PATCH] [project @ 2001-10-03 15:30:57 by rrt] Dear Sigbjorn, next time you turn an if...endif into an if...else..endif remember to check the sense of the test. Sometimes, it needs to be reversed (there was in this case a hint in the surrounding code). Love, Reuben. --- mk/target.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mk/target.mk b/mk/target.mk index ca32292..fd0502b 100644 --- a/mk/target.mk +++ b/mk/target.mk @@ -94,7 +94,7 @@ else BOOT_TARGET = boot endif -ifneq "$(NO_INSTALL_TARGET)" "YES" +ifeq "$(NO_INSTALL_TARGET)" "YES" INSTALL_TARGET = else INSTALL_TARGET = install -- 1.7.10.4