From e66b250e99e7beb36a04f005657a8da2adbdec44 Mon Sep 17 00:00:00 2001 From: Simon Robertshaw Date: Sat, 7 Jul 2012 20:13:51 +0100 Subject: Fix fftw3f detection diff --git a/SConscript b/SConscript index 2aa72b6..f630027 100644 --- a/SConscript +++ b/SConscript @@ -68,7 +68,7 @@ if not conf.CheckLib('SDL'): #Check for FFT lib if conf.CheckLib('fftw3f'): fftLib = "fftw3f" -if conf.CheckLib('fftw3f-3'): +elif conf.CheckLib('fftw3f-3'): fftLib = "fftw3f-3" else: print "libfftw3f not found or not installed" -- cgit v0.9.2-21-gd62e