aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index ae89d90a..9742ff97 100644
--- a/Makefile
+++ b/Makefile
@@ -72,7 +72,7 @@ dev: cleanup_bins
72build_bins: 72build_bins:
73 for f in $(BIN_FILES) ;\ 73 for f in $(BIN_FILES) ;\
74 do \ 74 do \
75 sed "1d" src/bin/$$f >> src/bin/$$f.bak ;\ 75 sed "1d" src/bin/$$f > src/bin/$$f.bak ;\
76 echo "#!$(LUA_BINDIR)/lua$(LUA_SUFFIX)" > src/bin/$$f ;\ 76 echo "#!$(LUA_BINDIR)/lua$(LUA_SUFFIX)" > src/bin/$$f ;\
77 echo "package.path = [[$(LUADIR)/?.lua;$(LUADIR)/?/init.lua;]]..package.path" >> src/bin/$$f ;\ 77 echo "package.path = [[$(LUADIR)/?.lua;$(LUADIR)/?/init.lua;]]..package.path" >> src/bin/$$f ;\
78 cat src/bin/$$f.bak >> src/bin/$$f ;\ 78 cat src/bin/$$f.bak >> src/bin/$$f ;\