diff options
author | EuAndreh <eu@euandre.org> | 2023-11-27 08:37:01 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2023-11-27 08:37:05 -0300 |
commit | e9e0d3b379cf90a44306d093bf814b62704650c4 (patch) | |
tree | a130d8e92ca0c2dbc354151721bce2673036260a | |
parent | tests/js/db.js: Disable test for incomplete code (diff) | |
download | papod-e9e0d3b379cf90a44306d093bf814b62704650c4.tar.gz papod-e9e0d3b379cf90a44306d093bf814b62704650c4.tar.xz |
Makefile: Fix missing installation of the `src/cli` executable
The `$PREFIX/bin/papo` was being installed as a symlink, but the target
was empty.
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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/}"`"; \ |