aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHisham Muhammad <hisham@gobolinux.org>2021-03-16 19:32:20 -0300
committerHisham Muhammad <hisham@gobolinux.org>2021-03-16 19:32:38 -0300
commit1db99934fc304f46b94983a5ad118cbb0cea2a72 (patch)
treef49d3f962d236c594705e7420a1cdf6073fa1d95
parent4bc532627dc59265abaf4d30e9c5c04d71fe7a6f (diff)
downloadluarocks-1db99934fc304f46b94983a5ad118cbb0cea2a72.tar.gz
luarocks-1db99934fc304f46b94983a5ad118cbb0cea2a72.tar.bz2
luarocks-1db99934fc304f46b94983a5ad118cbb0cea2a72.zip
configure: make shellcheck happy
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index 88d035a1..4a5542b9 100755
--- a/configure
+++ b/configure
@@ -437,7 +437,7 @@ check_incdir() {
437 do 437 do
438 if [ -f "$lua_h" ] 438 if [ -f "$lua_h" ]
439 then 439 then
440 grep "LUA_VERSION_NUM.*$LUA_VERSION" $lua_h &> /dev/null && return 440 grep "LUA_VERSION_NUM.*$LUA_VERSION" "$lua_h" > /dev/null 2> /dev/null && return
441 fi 441 fi
442 tried="$tried $lua_h" 442 tried="$tried $lua_h"
443 done 443 done