From e9e0d3b379cf90a44306d093bf814b62704650c4 Mon Sep 17 00:00:00 2001 From: EuAndreh Date: Mon, 27 Nov 2023 08:37:01 -0300 Subject: Makefile: Fix missing installation of the `src/cli` executable The `$PREFIX/bin/papo` was being installed as a symlink, but the target was empty. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 3e37f40..3c4479f 100644 --- a/Makefile +++ b/Makefile @@ -229,7 +229,7 @@ install: all mkdir -p \ '$(DESTDIR)$(BINDIR)' \ '$(DESTDIR)$(JSLIBDIR)' - cp -P src/*.js '$(DESTDIR)$(JSLIBDIR)' + cp -P src/cli src/*.js '$(DESTDIR)$(JSLIBDIR)' ln -fs '$(DESTDIR)$(JSLIBDIR)'/cli '$(DESTDIR)$(BINDIR)'/$(NAME) for f in $(sources); do \ dir='$(DESTDIR)$(SRCDIR)'/"`dirname "$${f#src/}"`"; \ -- cgit v1.2.3