summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xacprep8
1 files changed, 4 insertions, 4 deletions
diff --git a/acprep b/acprep
index 1165c2b9..275f2c84 100755
--- a/acprep
+++ b/acprep
@@ -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 #
#########################################################################