Fix UPDATES and host_cpu in configure.ac.
authorRichard W.M. Jones <rjones@redhat.com>
Sat, 11 Jul 2009 12:36:31 +0000 (13:36 +0100)
committerRichard W.M. Jones <rjones@redhat.com>
Sat, 11 Jul 2009 12:36:31 +0000 (13:36 +0100)
UPDATES does not need to be propagated into config.h.

host_cpu was AC_DEFINE'd twice.

configure.ac

index d1ca754..3f48d81 100644 (file)
@@ -206,8 +206,6 @@ REPO="$with_repo"
 AC_SUBST(REPO)
 AC_DEFINE_UNQUOTED([REPO],["$REPO"],[Name of Fedora repository.])
 
-AC_DEFINE_UNQUOTED([host_cpu],["$host_cpu"],[Host architecture.])
-
 dnl --with-updates to specify a Fedora updates repository.
 AC_ARG_WITH([updates],
        [AS_HELP_STRING([--with-updates],
@@ -216,8 +214,8 @@ AC_ARG_WITH([updates],
        [with_updates=updates-released-f11])
 UPDATES="$with_updates"
 AC_SUBST(UPDATES)
-AC_DEFINE_UNQUOTED([UPDATES],["$UPDATES"],[Name of Fedora updates repository.])
 
+dnl Define a symbol for the host CPU architecture.
 AC_DEFINE_UNQUOTED([host_cpu],["$host_cpu"],[Host architecture.])
 
 dnl --with-mirror to specify a local Fedora mirror.