From 89223ce1340654455a9f3aa9cbf25f30884227fd Mon Sep 17 00:00:00 2001 From: Thomas Miedema Date: Sat, 6 Jun 2015 18:47:05 +0200 Subject: Fix the build when SplitObjs=YES The default (perf) build, which sets SplitObjs=YES, was broken with commit 5dd02864a844bcf6fe0018755ff261affdef3fea. I accidently removed the wrong `endif`. This should fix it. --- rules/build-perl.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rules/build-perl.mk b/rules/build-perl.mk index 46cf0531e6..b943e16621 100644 --- a/rules/build-perl.mk +++ b/rules/build-perl.mk @@ -29,6 +29,7 @@ $$(error $1_$2_PROGNAME is not set) endif ifneq "$$($1_$2_PROG)" "" $$(error $1_$2_PROG is set) +endif $1_$2_PROG = $$($1_$2_PROGNAME) ifneq "$$($$($1_$2_PROG)_INPLACE)" "" @@ -39,7 +40,6 @@ $$($1_$2_PROG)_INPLACE = $$(INPLACE_TOPDIR)/$$($1_$2_PROG) else $$($1_$2_PROG)_INPLACE = $$(INPLACE_BIN)/$$($1_$2_PROG) endif -endif $1_$2_INPLACE = $$($$($1_$2_PROG)_INPLACE) -- cgit v1.2.1