configure: Respect Lua suffix in Debian preset if already set
authorKim Alvefur <zash@zash.se>
Fri, 19 Aug 2016 15:30:42 +0200
changeset 7611 2306d261ca0a
parent 7610 d17bc0d0748e
child 7612 01df17dc06a4
configure: Respect Lua suffix in Debian preset if already set
configure
--- a/configure	Fri Aug 19 14:43:38 2016 +0200
+++ b/configure	Fri Aug 19 15:30:42 2016 +0200
@@ -106,10 +106,12 @@
       OSTYPE="$value"
       OSTYPE_SET=yes
       if [ "$OSTYPE" = "debian" ]; then
-         LUA_SUFFIX="5.1";
-         LUA_SUFFIX_SET=yes
-         RUNWITH="lua5.1"
-         LUA_INCDIR=/usr/include/lua5.1;
+         if [ "$LUA_SUFFIX_SET" != "yes" ]; then
+            LUA_SUFFIX="5.1";
+            LUA_SUFFIX_SET=yes
+         fi
+         RUNWITH="lua$LUA_SUFFIX"
+         LUA_INCDIR="/usr/include/lua$LUA_SUFFIX"
          LUA_INCDIR_SET=yes
          CFLAGS="$CFLAGS -D_GNU_SOURCE"
       fi