aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar mitchell <70453897+orbitalquark@users.noreply.github.com>2022-02-26 00:04:09 -0500
committerGravatar mitchell <70453897+orbitalquark@users.noreply.github.com>2022-02-26 00:04:09 -0500
commita08a313aebc2872a3137e6eda193973709c0db14 (patch)
treefb06289c66457f46b92ef13618e5f1b07732401b
parentc60ae0140fb56996ea932d67aa7b65519c6fee8f (diff)
Fixed bug introduced during refactor.
For the git repo, a space is inserted and breaks the directory path.
-rw-r--r--src/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Makefile b/src/Makefile
index 48e27df5..bad15b59 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -382,11 +382,11 @@ 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)
- $(call archive, $@)
+ $(call archive,$@)
cp win32gtk/bin/*.dll $@ && cp -r $(addprefix win32gtk/, etc lib share) $@
rm -r $(addprefix $@/lib/, *.a glib-2.0 gtk-2.0/include pkgconfig)
cp -rL ../docs ../lexers $^ $@
@@ -402,7 +402,7 @@ $(osx_dir): $(osx_exes)
cp ../textadept-osx $@/$(osxapp_bin)/textadept
cp ../textadept-osx-curses $@/$(osxapp_bin)/textadept-curses
cp ../scripts/osx/textadept_osx $@/$(osxapp_bin)
- $(call archive, $@/$(osxapp_res))
+ $(call archive,$@/$(osxapp_res))
cp -rL ../docs ../lexers $@/$(osxapp_res)
mv $@/$(osxapp_res)/core/images/textadept.icns $@/$(osxapp_res)
cp -r $(addprefix gtkosx/, etc lib share) $@/$(osxapp_res)