Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3725f3ed authored by Yaakov Selkowitz's avatar Yaakov Selkowitz Committed by Michal Marek
Browse files

kconfig: fix check-lxdialog for DLL platforms



Import libraries on Cygwin and MinGW/MSYS use the .dll.a suffix, so
checking this suffix is necessary to make sure ncurses will still be
found when built without static libraries.

Signed-off-by: default avatarYaakov Selkowitz <yselkowitz@users.sourceforge.net>
Signed-off-by: default avatarMichal Marek <mmarek@suse.cz>
parent 84354256
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -4,7 +4,7 @@
# What library to link
ldflags()
{
	for ext in so a dylib ; do
	for ext in so a dll.a dylib ; do
		for lib in ncursesw ncurses curses ; do
			$cc -print-file-name=lib${lib}.${ext} | grep -q /
			if [ $? -eq 0 ]; then