You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@stdcxx.apache.org by ab...@apache.org on 2007/10/16 15:55:06 UTC

svn commit: r585143 - /incubator/stdcxx/trunk/etc/config/makefile.rules

Author: ablack
Date: Tue Oct 16 06:54:59 2007
New Revision: 585143

URL: http://svn.apache.org/viewvc?rev=585143&view=rev
Log:
2007-10-15  Andrew Black  <ab...@roguewave.com>
STDCXX-109
	* etc/config/makefile.rules ($(CATFILE)): Make failure to execute
	the gencat utility non-fatal.


Modified:
    incubator/stdcxx/trunk/etc/config/makefile.rules

Modified: incubator/stdcxx/trunk/etc/config/makefile.rules
URL: http://svn.apache.org/viewvc/incubator/stdcxx/trunk/etc/config/makefile.rules?rev=585143&r1=585142&r2=585143&view=diff
==============================================================================
--- incubator/stdcxx/trunk/etc/config/makefile.rules (original)
+++ incubator/stdcxx/trunk/etc/config/makefile.rules Tue Oct 16 06:54:59 2007
@@ -67,7 +67,7 @@
 
 # create a catalog from text message files - see gencat(1)
 $(CATFILE): $(MSGFILES)
-	gencat $@ $^
+	-gencat $@ $^
 
 
 ########################################################################



Re: svn commit: r585143 - /incubator/stdcxx/trunk/etc/config/makefile.rules

Posted by Martin Sebor <se...@roguewave.com>.
Andrew Black wrote:
> Martin Sebor wrote:
>> ablack@apache.org wrote:
>>> Author: ablack
>>> Date: Tue Oct 16 06:54:59 2007
>>> New Revision: 585143
>>>
>>> URL: http://svn.apache.org/viewvc?rev=585143&view=rev
>>> Log:
>>> 2007-10-15  Andrew Black  <ab...@roguewave.com>
>>> STDCXX-109
>>>     * etc/config/makefile.rules ($(CATFILE)): Make failure to execute
>>>     the gencat utility non-fatal.
>> Andrew, can please you correct the format of your change log
>> to conform to the documented style? Use svn propset --revprop
>> to make the change:
>> http://svnbook.red-bean.com/en/1.4/svn-book.html#svn.ref.svn.c.propset
>>
>> If you're having trouble remembering the specifics of the
>> formatting style we use the Emacs add-change-log-entry command
>> will automatically format it for you.
> 
> *shrugs* I did use the Emacs add-change-log-entry command when I
> generated the change.  Perhaps I don't have the command configured
> correctly.  Before I edit the change, I want to make certain I'm
> correcting the actual mistake.  Is the correct formatting to have a
> blank line after the author name and indent the change number?

Yes. Look in one of the ChangeLogs for examples. Here's one:
http://svn.apache.org/viewvc/incubator/stdcxx/trunk/src/ChangeLog?revision=585025&view=markup

But Emacs should do the right thing for you out of the box.
I didn't have to configure anything to make it do that.

Martin

> 
> --Andrew Black
> 
>> Martin
>>
>>>
>>> Modified:
>>>     incubator/stdcxx/trunk/etc/config/makefile.rules
>>>
>>> Modified: incubator/stdcxx/trunk/etc/config/makefile.rules
>>> URL:
>>> http://svn.apache.org/viewvc/incubator/stdcxx/trunk/etc/config/makefile.rules?rev=585143&r1=585142&r2=585143&view=diff
>>>
>>> ==============================================================================
>>>
>>> --- incubator/stdcxx/trunk/etc/config/makefile.rules (original)
>>> +++ incubator/stdcxx/trunk/etc/config/makefile.rules Tue Oct 16
>>> 06:54:59 2007
>>> @@ -67,7 +67,7 @@
>>>  
>>>  # create a catalog from text message files - see gencat(1)
>>>  $(CATFILE): $(MSGFILES)
>>> -    gencat $@ $^
>>> +    -gencat $@ $^
>>>  
>>>  
>>>  ########################################################################
>>>
>>>


Re: svn commit: r585143 - /incubator/stdcxx/trunk/etc/config/makefile.rules

Posted by Andrew Black <ab...@roguewave.com>.
Martin Sebor wrote:
> ablack@apache.org wrote:
>> Author: ablack
>> Date: Tue Oct 16 06:54:59 2007
>> New Revision: 585143
>>
>> URL: http://svn.apache.org/viewvc?rev=585143&view=rev
>> Log:
>> 2007-10-15  Andrew Black  <ab...@roguewave.com>
>> STDCXX-109
>>     * etc/config/makefile.rules ($(CATFILE)): Make failure to execute
>>     the gencat utility non-fatal.
> 
> Andrew, can please you correct the format of your change log
> to conform to the documented style? Use svn propset --revprop
> to make the change:
> http://svnbook.red-bean.com/en/1.4/svn-book.html#svn.ref.svn.c.propset
> 
> If you're having trouble remembering the specifics of the
> formatting style we use the Emacs add-change-log-entry command
> will automatically format it for you.

*shrugs* I did use the Emacs add-change-log-entry command when I
generated the change.  Perhaps I don't have the command configured
correctly.  Before I edit the change, I want to make certain I'm
correcting the actual mistake.  Is the correct formatting to have a
blank line after the author name and indent the change number?

--Andrew Black

> 
> Martin
> 
>>
>>
>> Modified:
>>     incubator/stdcxx/trunk/etc/config/makefile.rules
>>
>> Modified: incubator/stdcxx/trunk/etc/config/makefile.rules
>> URL:
>> http://svn.apache.org/viewvc/incubator/stdcxx/trunk/etc/config/makefile.rules?rev=585143&r1=585142&r2=585143&view=diff
>>
>> ==============================================================================
>>
>> --- incubator/stdcxx/trunk/etc/config/makefile.rules (original)
>> +++ incubator/stdcxx/trunk/etc/config/makefile.rules Tue Oct 16
>> 06:54:59 2007
>> @@ -67,7 +67,7 @@
>>  
>>  # create a catalog from text message files - see gencat(1)
>>  $(CATFILE): $(MSGFILES)
>> -    gencat $@ $^
>> +    -gencat $@ $^
>>  
>>  
>>  ########################################################################
>>
>>
> 

Re: svn commit: r585143 - /incubator/stdcxx/trunk/etc/config/makefile.rules

Posted by Martin Sebor <se...@roguewave.com>.
ablack@apache.org wrote:
> Author: ablack
> Date: Tue Oct 16 06:54:59 2007
> New Revision: 585143
> 
> URL: http://svn.apache.org/viewvc?rev=585143&view=rev
> Log:
> 2007-10-15  Andrew Black  <ab...@roguewave.com>
> STDCXX-109
> 	* etc/config/makefile.rules ($(CATFILE)): Make failure to execute
> 	the gencat utility non-fatal.

Andrew, can please you correct the format of your change log
to conform to the documented style? Use svn propset --revprop
to make the change:
http://svnbook.red-bean.com/en/1.4/svn-book.html#svn.ref.svn.c.propset

If you're having trouble remembering the specifics of the
formatting style we use the Emacs add-change-log-entry command
will automatically format it for you.

Martin

> 
> 
> Modified:
>     incubator/stdcxx/trunk/etc/config/makefile.rules
> 
> Modified: incubator/stdcxx/trunk/etc/config/makefile.rules
> URL: http://svn.apache.org/viewvc/incubator/stdcxx/trunk/etc/config/makefile.rules?rev=585143&r1=585142&r2=585143&view=diff
> ==============================================================================
> --- incubator/stdcxx/trunk/etc/config/makefile.rules (original)
> +++ incubator/stdcxx/trunk/etc/config/makefile.rules Tue Oct 16 06:54:59 2007
> @@ -67,7 +67,7 @@
>  
>  # create a catalog from text message files - see gencat(1)
>  $(CATFILE): $(MSGFILES)
> -	gencat $@ $^
> +	-gencat $@ $^
>  
>  
>  ########################################################################
> 
>