Skip to Content.
Sympa Menu

sm-grimoire-bugs - [SM-Grimoire-Bugs] [Bug 12592] fftw has a new upstream version

sm-grimoire-bugs AT lists.ibiblio.org

Subject: SourceMage Grimoire Bug List

List archive

Chronological Thread  
  • From: bugzilla-daemon AT bugs.sourcemage.org
  • To: sm-grimoire-bugs AT lists.ibiblio.org
  • Subject: [SM-Grimoire-Bugs] [Bug 12592] fftw has a new upstream version
  • Date: 3 Jun 2006 14:16:45 -0000

http://bugs.sourcemage.org/show_bug.cgi?id=12592


jakakranjc AT email.si changed:

What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |ASSIGNED




------- Additional Comments From jakakranjc AT email.si 2006-06-03 09:16 -------
The patch looks fine, except for the ifs. Not only are they ugly, they are
never true.

$ a="1 32 5 34 56 6 7 9"
$ if [ ! -z `echo $a | grep -q 2` ]; then echo go; fi
$ if [ ! -z `echo $a | grep -q f` ]; then echo go; fi
$

It would work without the -q or more elegantly:
if grep -q sse2 <<< "$CFLAGS"; then

--
Configure bugmail: http://bugs.sourcemage.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.




Archive powered by MHonArc 2.6.24.

Top of Page