diff options
author | Richard Jones <rjones@redhat.com> | 2010-04-08 15:49:14 +0100 |
---|---|---|
committer | Richard Jones <rjones@redhat.com> | 2010-04-08 15:49:14 +0100 |
commit | 0ce9b2bb9bcac61f7fb5dd2811d9b3b621f8309b (patch) | |
tree | 4a850e0ac31df5b7592ace64f7181aadc34f106f /configure.ac | |
parent | d0efcd6b63edb3e32a7ff0c7e032d06a2d16f348 (diff) | |
download | libguestfs-0ce9b2bb9bcac61f7fb5dd2811d9b3b621f8309b.tar.gz libguestfs-0ce9b2bb9bcac61f7fb5dd2811d9b3b621f8309b.tar.xz libguestfs-0ce9b2bb9bcac61f7fb5dd2811d9b3b621f8309b.zip |
configure: Default to using Fedora 12 repo (was Fedora 11).
Fedora 11 is almost EOL at this point.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac index 7cde23bf..0c15d75b 100644 --- a/configure.ac +++ b/configure.ac @@ -345,9 +345,9 @@ if test "x$enable_appliance" = "xyes"; then dnl --with-updates to specify a Fedora updates repository. AC_ARG_WITH([updates], [AS_HELP_STRING([--with-updates], - [set name of Fedora updates repository @<:@default=updates-released-f11@:>@])], + [set name of Fedora updates repository @<:@default=updates-released-f12@:>@])], [], - [with_updates=updates-released-f11]) + [with_updates=updates-released-f12]) UPDATES="$with_updates" AC_SUBST(UPDATES) @@ -364,9 +364,9 @@ fi dnl --with-repo to specify a Fedora repository. AC_ARG_WITH([repo], [AS_HELP_STRING([--with-repo], - [set name of Fedora repository @<:@default=fedora-11@:>@])], + [set name of Fedora repository @<:@default=fedora-12@:>@])], [], - [with_repo=fedora-11]) + [with_repo=fedora-12]) REPO="$with_repo" AC_SUBST(REPO) AC_DEFINE_UNQUOTED([REPO],["$REPO"],[Name of Fedora repository.]) |