In message <[EMAIL PROTECTED]> on Wed, 4 Aug 2004 21:05:20 -0700 (PDT), Doug Kaufman 
<[EMAIL PROTECTED]> said:

dkaufman> The DJGPP version of make was unable to handle the shell
dkaufman> comparators in the Makefiles in the subdirectories of fips
dkaufman> where $(EXHEADER) is null, despite the fact that the shell
dkaufman> itself handles this well. I put alternative conditionals in
dkaufman> the makefiles. I think these are probably GNU extensions,
dkaufman> but I didn't see another way of having this work in DJGPP. I
dkaufman> hope this isn't breaking the makefiles for other platforms.

It will break Makefiles on other platforms big time.

An alternate way could be the following:

        @for i in "" $(EXHEADERS); \
          do \
            test -n $$i && \
              ( ...whatever-was-done... ); \
          done

-----
Please consider sponsoring my work on free software.
See http://www.free.lp.se/sponsoring.html for details.

-- 
Richard Levitte                         [EMAIL PROTECTED]
                                        http://richard.levitte.org/
______________________________________________________________________
OpenSSL Project                                 http://www.openssl.org
Development Mailing List                       [EMAIL PROTECTED]
Automated List Manager                           [EMAIL PROTECTED]

Reply via email to