diff options
author | Boris Nagaev <bnagaev@gmail.com> | 2015-12-01 21:02:33 (GMT) |
---|---|---|
committer | Boris Nagaev <bnagaev@gmail.com> | 2015-12-06 02:38:24 (GMT) |
commit | a79bd18dac67c9700d794f6b31f3e97fd6873375 (patch) | |
tree | 606299cccea74d62b4182ee8ce958b969bf58303 /plugins | |
parent | 5c58492295fbb15c416612f4d21d96c578b09596 (diff) | |
download | mxe-a79bd18dac67c9700d794f6b31f3e97fd6873375.zip mxe-a79bd18dac67c9700d794f6b31f3e97fd6873375.tar.gz mxe-a79bd18dac67c9700d794f6b31f3e97fd6873375.tar.bz2 |
install lua symlinks to $(PREFIX)/$(BUILD)/bin
... instead of $(PREFIX)/bin, not to clobber the user's normal
tools.
See #1017
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/luarocks/luarocks.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/luarocks/luarocks.mk b/plugins/luarocks/luarocks.mk index 254e303..3ec4404 100644 --- a/plugins/luarocks/luarocks.mk +++ b/plugins/luarocks/luarocks.mk @@ -24,7 +24,7 @@ define $(PKG)_BUILD_SHARED --rocks-tree='$(PREFIX)/$(TARGET)' \ --lua-version='$(lua_SHORTVER)' \ --with-lua='$(PREFIX)/$(TARGET)' \ - --with-lua-bin='$(PREFIX)/bin' \ + --with-lua-bin='$(PREFIX)/$(BUILD)/bin' \ --with-downloader='wget' \ --with-md5-checker='openssl' $(MAKE) -C '$(1)' build \ |