From 829758e8943d86a3332f37858464fcbe744072be Mon Sep 17 00:00:00 2001 From: Matthew Fernandez Date: Mon, 1 Nov 2021 17:04:33 -0700 Subject: [PATCH] =?utf8?q?fix:=20do=20not=20ship=20Dotty=E2=80=99s=20Lefty?= =?utf8?q?=20examples=20when=20Lefty=20is=20not=20being=20built?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Related to #2153. --- cmd/dotty/Makefile.am | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/cmd/dotty/Makefile.am b/cmd/dotty/Makefile.am index 5de0ffdfd..89ba20dca 100644 --- a/cmd/dotty/Makefile.am +++ b/cmd/dotty/Makefile.am @@ -9,8 +9,12 @@ bin_PROGRAMS = dotty else bin_SCRIPTS = dotty endif +if WITH_LEFTY lefty_DATA = dotty.lefty dotty_draw.lefty dotty_edit.lefty \ dotty_layout.lefty dotty_ui.lefty +else +lefty_DATA = +endif endif man_MANS = dotty.1 -- 2.40.0