aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorHisham Muhammad <hisham@gobolinux.org>2012-03-03 14:25:55 -0800
committerHisham Muhammad <hisham@gobolinux.org>2012-03-03 14:25:55 -0800
commitd2a4573ad42be8fe68bfd2b0aa73658f5748b1d8 (patch)
tree3b2aa42e44fff71a1dadb0b127347a42ed886afd /Makefile
parent9b9df2fa3475531aba8e41e38ba7d452d802cfb6 (diff)
parentaaf92d629ce4bdb903bd5dde14e94f20abf5825a (diff)
downloadluarocks-d2a4573ad42be8fe68bfd2b0aa73658f5748b1d8.tar.gz
luarocks-d2a4573ad42be8fe68bfd2b0aa73658f5748b1d8.tar.bz2
luarocks-d2a4573ad42be8fe68bfd2b0aa73658f5748b1d8.zip
Merge pull request #66 from mpx/solaris-support
Solaris support
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 7c1cb252..89993210 100644
--- a/Makefile
+++ b/Makefile
@@ -104,7 +104,8 @@ check_makefile:
104cleanup_bins: 104cleanup_bins:
105 for f in $(BIN_FILES) ;\ 105 for f in $(BIN_FILES) ;\
106 do \ 106 do \
107 sed -i.bak "s,^#!.*lua.*,#!/usr/bin/env lua,;/^package.path/d" src/bin/$$f ;\ 107 mv src/bin/$$f{,.bak} ;\
108 sed "s,^#!.*lua.*,#!/usr/bin/env lua,;/^package.path/d" < src/bin/$$f.bak > src/bin/$$f ;\
108 rm src/bin/$$f.bak ;\ 109 rm src/bin/$$f.bak ;\
109 done 110 done
110 111