Displaying 1 result from an estimated 1 matches for "image_minimizer".
2011 Jul 23
0
[PATCH] make image minimization optional
...enable some warnings.
-test x"$ac_ct_CC:$CFLAGS" = 'xgcc:-g -O2' \
- && CFLAGS="$CFLAGS -Wshadow -Wall -Werror"
+AC_ARG_WITH([image-minimizer], [AC_HELP_STRING([--with-image-minimizer],
+ [enable aggresive reduction of the image size])],
+ [IMAGE_MINIMIZER="%include image-minimizer.ks"],
+ [IMAGE_MINIMIZER=""])
+AC_SUBST([IMAGE_MINIMIZER])
AC_CONFIG_FILES([Makefile
augeas/Makefile
@@ -28,6 +27,7 @@ AC_CONFIG_FILES([Makefile
scripts/collectd.conf
recipe/Makefile
recipe/ovirt-node-image.ks
+ recipe/image-m...