View | Details | Raw Unified | Return to bug 211392
Collapse All | Expand All

(-)/usr/lib/YaST2/bin/yast2-funcs.orig (-2 / +2 lines)
Lines 37-43 Link Here
37
    Y2_QT=$plugindir/libpy2qt.so.2
37
    Y2_QT=$plugindir/libpy2qt.so.2
38
38
39
    if [ -e "$Y2_QT" ] ; then
39
    if [ -e "$Y2_QT" ] ; then
40
	if ! `/usr/bin/ldd "$Y2_QT" | grep --quiet "=> not found"` ; then
40
	if ! /usr/bin/ldd "$Y2_QT" | grep "=> not found" ; then
41
	    return 0		# success
41
	    return 0		# success
42
	fi
42
	fi
43
	echo "warning: the qt frontend is installed but does not work"
43
	echo "warning: the qt frontend is installed but does not work"
Lines 57-63 Link Here
57
    Y2_NCURSES=$plugindir/libpy2ncurses.so.2
57
    Y2_NCURSES=$plugindir/libpy2ncurses.so.2
58
58
59
    if [ -e "$Y2_NCURSES" ] ; then
59
    if [ -e "$Y2_NCURSES" ] ; then
60
	if ! `/usr/bin/ldd "$Y2_NCURSES" | grep --quiet "=> not found"` ; then
60
	if ! /usr/bin/ldd "$Y2_NCURSES" | grep "=> not found" ; then
61
	    return 0		# success
61
	    return 0		# success
62
	fi
62
	fi
63
	echo "warning: the ncurses frontend is installed but does not work"
63
	echo "warning: the ncurses frontend is installed but does not work"

Return to bug 211392