We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3d042e2 commit 985385aCopy full SHA for 985385a
scripts/buildLuaRocks.sh
@@ -14,7 +14,7 @@ rm luarocks-3.12.2.tar.gz
14
cd luarocks-3.12.2
15
case $(uname -v) in
16
*FreeBSD*)
17
- ./configure --with-lua-bin="/usr/local/bin/$LUA_BIN_NAME"
+ ./configure --with-lua-bin="/usr/local/bin/"
18
;;
19
*)
20
./configure
scripts/compilerName.sh
@@ -5,7 +5,15 @@ export CXX_COMPILER=""
5
6
if [[ $COMPILER = "gcc" ]]; then
7
export C_COMPILER_PACKAGE="gcc"
8
- export CXX_COMPILER_PACKAGE="g++"
+ case $(uname -v) in
9
+ *FreeBSD*)
10
+ export CXX_COMPILER_PACKAGE=""
11
+ ;;
12
+ *)
13
+ export CXX_COMPILER_PACKAGE="g++"
+ esac
+
export C_COMPILER="/usr/bin/gcc"
export CXX_COMPILER="/usr/bin/g++"
elif [[ $COMPILER = "clang" ]]; then
0 commit comments