]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[trac5027] Renamed "found"=>yes, "not found"=>no for premium
authorTomek Mrugalski <tomasz@isc.org>
Wed, 23 Nov 2016 13:09:46 +0000 (14:09 +0100)
committerTomek Mrugalski <tomasz@isc.org>
Wed, 23 Nov 2016 13:09:46 +0000 (14:09 +0100)
configure.ac

index 79a9074caf5e9f89adb63c06bfd74a303fa1680e..cc8c062fdf2d75a63a0a3291232ade3b97e52e5b 100644 (file)
@@ -1647,9 +1647,9 @@ if test -d "$srcdir/premium/src"; then
 
     # Export it here, so code in configure could use it.
     PREMIUM=1
-    AC_MSG_RESULT(found!)
+    AC_MSG_RESULT(yes)
 else
-    AC_MSG_RESULT(not found)
+    AC_MSG_RESULT(no)
 fi
 
 AC_OUTPUT
@@ -1676,11 +1676,11 @@ Package:
 END
 if test "$PREMIUM" != ""; then
 cat >> config.report << END
-  Premium package: Found
+  Premium package: yes
 END
 else
 cat >> config.report << END
-  Premium package: Not found
+  Premium package: no
 END
 fi
 cat >> config.report << END