Fix indentation and position of Fedora test.

The blame for this section was a bit of a cluster, but, as someone who's not
using Fedora, this makes the most logical sense. (Fedora is a version of RH,
right?)
This commit is contained in:
Jacob MacDonald 2015-02-23 15:53:20 -07:00
parent 0b7996ed7c
commit 69e692dbc5

8
acprep
View file

@ -644,10 +644,6 @@ class PrepareBuild(CommandLineApp):
]
self.log.info('Executing: ' + ' '.join(packages))
self.execute(*packages)
elif system.startswith('CYGWIN'):
self.log.info('Looks like you are using Cygwin')
self.log.info('Please install the dependencies manually.')
elif release.startswith('Fedora release 20'):
self.log.info('Looks like you are using YUM on Fedora 20')
packages = [
@ -673,6 +669,10 @@ class PrepareBuild(CommandLineApp):
self.log.info('Executing: ' + ' '.join(packages))
self.execute(*packages)
elif system.startswith('CYGWIN'):
self.log.info('Looks like you are using Cygwin')
self.log.info('Please install the dependencies manually.')
#########################################################################
# Determine the system's basic configuration #
#########################################################################