aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authormitchell <70453897+667e-11@users.noreply.github.com>2018-10-22 23:34:20 -0400
committermitchell <70453897+667e-11@users.noreply.github.com>2018-10-22 23:34:20 -0400
commit38ba00fe99703447f34616caa15012c1d1e5dbf9 (patch)
tree6c163245841babcf8c7971535a82a5337a7b1ebc /src
parent46c14ddbe14386a98a8172519b6236ee2443353a (diff)
downloadtextadept-38ba00fe99703447f34616caa15012c1d1e5dbf9.tar.gz
textadept-38ba00fe99703447f34616caa15012c1d1e5dbf9.zip
Fixed Makefile rule for rebuilding lua src directory.
Some lualibs files are read-only.
Diffstat (limited to 'src')
-rw-r--r--src/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile b/src/Makefile
index 67f28091..f0a6a807 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -391,7 +391,7 @@ $(lua_tgz): ; wget http://www.lua.org/ftp/$@
$(lpeg_tgz): ; wget http://www.inf.puc-rio.br/~roberto/lpeg/$@
$(lfs_zip): ; wget http://github.com/keplerproject/luafilesystem/archive/$@
lua: lua.patch | $(lua_tgz)
- if [ -d $@ ]; then rm -r $@; fi
+ if [ -d $@ ]; then rm -rf $@; fi
mkdir $@ && tar xzf $| -C $@ && mv $@/*/* $@
patch -d $@ -N -p1 < $<
lualibs: lua/src/lib/lpeg lua/src/lib/lfs