------- You are receiving this mail because: -------
You are on the CC list for the bug.

http://bugs.exim.org/show_bug.cgi?id=1200

Dmitry V. Levin <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |[email protected]




--- Comment #4 from Dmitry V. Levin <[email protected]>  2012-01-17 14:08:48 ---
(In reply to comment #3)
> Just replace
> 
> AM_SILENT_RULES([yes])
> 
> with
> 
> m4_ifndef([AM_SILENT_RULES], [m4_define([AM_SILENT_RULES],[])])
> AM_SILENT_RULES([yes]) # make --enable-silent-rules the default.
> 

Please do not define your own version of AM_SILENT_RULES.

If you want to use AM_SILENT_RULES([yes]) and remain the code portable to old
versions of automake, replace

AM_SILENT_RULES([yes])

with

m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])


-- 
Configure bugmail: http://bugs.exim.org/userprefs.cgi?tab=email

-- 
## List details at https://lists.exim.org/mailman/listinfo/pcre-dev 

Reply via email to