From 14cef7ef60bd073b9d67bf913b1387b70fdc374a Mon Sep 17 00:00:00 2001 From: Marco Pesenti Gritti Date: Wed, 27 Aug 2008 19:57:44 +0000 Subject: Fail if icon-slicer is not installed. --- diff --git a/configure.ac b/configure.ac index c679d72..51eff07 100644 --- a/configure.ac +++ b/configure.ac @@ -15,6 +15,9 @@ AC_HEADER_STDC AC_PROG_LIBTOOL AC_PATH_PROG([ICON_SLICER], [icon-slicer]) +if test -z "$ICON_SLICER"; then + AC_MSG_ERROR([icon-slicer is required]) +fi PKG_CHECK_MODULES(GTK2, gtk+-2.0 >= 2.0.0,, AC_MSG_ERROR([GTK+-2.0 is required to compile redhat-artwork])) -- cgit v0.9.1