diff options
author | Hisham Muhammad <hisham@gobolinux.org> | 2014-11-10 11:12:07 -0200 |
---|---|---|
committer | Hisham Muhammad <hisham@gobolinux.org> | 2014-11-10 11:12:07 -0200 |
commit | 7a7c1245f89fc5c7fa4b6f4fe6b1dd7b5722a7e7 (patch) | |
tree | bc126e6e8b18c0a89c7a791c89b8a6779f41ff28 | |
parent | 723bf994b0f19f7368b2f30b8818cde871d7e3f1 (diff) | |
download | luarocks-7a7c1245f89fc5c7fa4b6f4fe6b1dd7b5722a7e7.tar.gz luarocks-7a7c1245f89fc5c7fa4b6f4fe6b1dd7b5722a7e7.tar.bz2 luarocks-7a7c1245f89fc5c7fa4b6f4fe6b1dd7b5722a7e7.zip |
Add check for Fedora systems. Closes #289.
Diffstat (limited to '')
-rwxr-xr-x | configure | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -419,6 +419,10 @@ then | |||
419 | if [ -n "$GCC_ARCH" -a -d "/usr/lib/$GCC_ARCH" ] | 419 | if [ -n "$GCC_ARCH" -a -d "/usr/lib/$GCC_ARCH" ] |
420 | then | 420 | then |
421 | MULTIARCH_SUBDIR="lib/$GCC_ARCH" | 421 | MULTIARCH_SUBDIR="lib/$GCC_ARCH" |
422 | elif [ -d "/usr/lib64" ] | ||
423 | then | ||
424 | # Useful for Fedora systems | ||
425 | MULTIARCH_SUBDIR="lib64" | ||
422 | fi | 426 | fi |
423 | fi | 427 | fi |
424 | 428 | ||