diff options
author | 2012-08-29 21:16:47 -0400 | |
---|---|---|
committer | 2012-08-29 21:16:47 -0400 | |
commit | 7e947257a46ec070312773f6ea6a63f83f4f9a26 (patch) | |
tree | a3ec677ff5c74fabc09ddcccfcc6c2bcd7c6e59f | |
parent | 71ff2dc63161b8fb32a19dde59597b6ab1cbc43e (diff) | |
download | textadept-7e947257a46ec070312773f6ea6a63f83f4f9a26.tar.gz textadept-7e947257a46ec070312773f6ea6a63f83f4f9a26.zip |
Fixed bug for release names with multiple spaces; src/Makefile
-rw-r--r-- | src/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile b/src/Makefile index a30b946e..fed903d8 100644 --- a/src/Makefile +++ b/src/Makefile @@ -331,7 +331,7 @@ cleandoc: # Package. basedir = textadept_$(shell grep "_RELEASE =" ../core/init.lua | \ - cut -d ' ' -f 4- | sed -e 's/"//; s/ /_/;') + cut -d ' ' -f 4- | sed -e 's/"//; s/ /_/g;') modules = css hypertext java rails rhtml ruby php release: ../textadept ../textadeptjit ../textadept-ncurses \ |