diff options
author | Thomas Miedema <thomasmiedema@gmail.com> | 2015-06-06 18:47:05 +0200 |
---|---|---|
committer | Thomas Miedema <thomasmiedema@gmail.com> | 2015-06-06 19:52:44 +0200 |
commit | 89223ce1340654455a9f3aa9cbf25f30884227fd (patch) | |
tree | 8cf34c9b3c35cfb79b6e9ae740f3ad4b481a2da9 /rules | |
parent | 328c212b1db4d439fc693216495515bce162ef6e (diff) | |
download | haskell-89223ce1340654455a9f3aa9cbf25f30884227fd.tar.gz |
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.
Diffstat (limited to 'rules')
-rw-r--r-- | rules/build-perl.mk | 2 |
1 files changed, 1 insertions, 1 deletions
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) |