aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar mitchell <70453897+orbitalquark@users.noreply.github.com>2022-02-26 00:13:23 -0500
committerGravatar mitchell <70453897+orbitalquark@users.noreply.github.com>2022-02-26 00:13:23 -0500
commitb99f73b58460de943c63b23f2be9acb02e0023a6 (patch)
tree7791b16ddf2e0b73da24c3a67a30ef8e744454a1
parenta08a313aebc2872a3137e6eda193973709c0db14 (diff)
Fixed another bug introduced during Makefile refactor.
For the git repo, put the piped expression on its own line.
-rw-r--r--src/Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/Makefile b/src/Makefile
index bad15b59..c6a8482e 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -382,7 +382,9 @@ else
endif
# TODO: CXXFLAGS="$(CXXFLAGS) -static-libstdc++"
-$(linux_dir): $(linux_exes) ; $(call archive,$@) && cp -rL ../docs ../lexers $^ $@
+$(linux_dir): $(linux_exes)
+ $(call archive,$@)
+ cp -rL ../docs ../lexers $^ $@
$(linux_dir).tgz: $(linux_dir) ; tar czf $<.tgz $< && rm -r $<
$(win_dir): $(win_exes)