diff options
author | Richard W.M. Jones <rjones@redhat.com> | 2009-07-11 13:36:31 +0100 |
---|---|---|
committer | Richard W.M. Jones <rjones@redhat.com> | 2009-07-11 13:36:31 +0100 |
commit | 55c2a4677b4b6c172b4331d0c9cc9a12e8e20084 (patch) | |
tree | 3a40a071dca5654d014eab312aedcefed897de54 /configure.ac | |
parent | 3f2ba6fdfbb82234e8a546dc54d568f49cd2e56b (diff) | |
download | libguestfs-55c2a4677b4b6c172b4331d0c9cc9a12e8e20084.tar.gz libguestfs-55c2a4677b4b6c172b4331d0c9cc9a12e8e20084.tar.xz libguestfs-55c2a4677b4b6c172b4331d0c9cc9a12e8e20084.zip |
Fix UPDATES and host_cpu in configure.ac.
UPDATES does not need to be propagated into config.h.
host_cpu was AC_DEFINE'd twice.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac index d1ca7546..3f48d819 100644 --- a/configure.ac +++ b/configure.ac @@ -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. |