From e9cd25743c9d589b0f8ac2d1c2efef1d3a6aa85b Mon Sep 17 00:00:00 2001 From: Roy Marples Date: Wed, 17 Sep 2014 10:22:20 +0000 Subject: [PATCH] Fix --without-icons --- configure | 6 +++++- 1 files changed, 5 insertions(+), 1 deletions(-) diff --git a/configure b/configure index c621950..bcc9dd9 100755 --- a/configure +++ b/configure @@ -7,6 +7,7 @@ LIBDHCPCD=no WITH_DHCPCD_ONLINE=yes WITH_GTK= WITH_QT= +WITH_ICONS= NOTIFY=yes INCLUDEDIR= UI= @@ -371,7 +372,10 @@ elif [ -n "$WITH_QT" -a "$WITH_QT" != no ]; then fi fi -if [ -n "$UI" -o "$WITH_ICONS" = yes ]; then +if [ -n "$UI" -a -z "$WITH_ICONS" ]; then + WITH_ICONS=yes +fi +if [ "$WITH_ICONS" = yes ]; then echo "MKICONS= icons" >>$CONFIG_MK fi -- 1.7.1