From a6ae46485cd6445e68a011e4b6a3d82401c2bcd3 Mon Sep 17 00:00:00 2001 From: Hisham Muhammad Date: Mon, 19 Mar 2012 16:19:42 -0300 Subject: Make sure permissions are retained, now that the file is rewritten (for compatibility with implementations of sed that don't support -i) --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index 4ca7d72f..eda14bb5 100644 --- a/Makefile +++ b/Makefile @@ -76,6 +76,7 @@ build_bins: cleanup_bins echo "#!$(LUA_BINDIR)/lua$(LUA_SUFFIX)" > src/bin/$$f ;\ echo "package.path = [[$(LUADIR)/?.lua;$(LUADIR)/?/init.lua;]]..package.path" >> src/bin/$$f ;\ cat src/bin/$$f.bak >> src/bin/$$f ;\ + chmod +x src/bin/$$f ;\ rm src/bin/$$f.bak ;\ done -- cgit v1.2.3-55-g6feb