Try harder to find libcrypt.*, even if there is no static library
available. Also look in /usr/lib/*/ for the library, to handle Debian multiarch systems. Based on patch from Andrew Gregory.
This commit is contained in:
@@ -89,7 +89,12 @@ else
|
||||
endif
|
||||
|
||||
# Additional libs for GNU libc.
|
||||
ifneq ($(wildcard /usr/lib*/libcrypt.a),)
|
||||
ifneq ($(wildcard /usr/lib*/libcrypt.*),)
|
||||
SULOGINLIBS += -lcrypt
|
||||
endif
|
||||
|
||||
# Additional libs for GNU libc / multiarch on Debian based systems.
|
||||
ifneq ($(wildcard /usr/lib/*/libcrypt.*),)
|
||||
SULOGINLIBS += -lcrypt
|
||||
endif
|
||||
|
||||
|
Reference in New Issue
Block a user