From e66b250e99e7beb36a04f005657a8da2adbdec44 Mon Sep 17 00:00:00 2001 From: Simon Robertshaw Date: Sat, 7 Jul 2012 20:13:51 +0100 Subject: [PATCH] Fix fftw3f detection --- SConscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SConscript b/SConscript index 2aa72b68a..f630027e3 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"