On Tue, Jul 15, 2008 at 2:52 PM, Lukas Oboril <oboril.lukas at gmail.com> wrote:
> Hi Pete,
>
> for first look, seems to be useful ...

Personally, keeping a log of the actual build would be something I
would find of some use, to scan for unintended or other types of
errors that occur but don't botch the compile or install.

Ben

>
> thank you
>
> P.S.: keep in Cc: kde-discuss at opensolaris.org
>
> On Tue, Jul 15, 2008 at 8:46 PM, Petri Kunnari <petri.j.kunnari at gmail.com>
> wrote:
>>
>> I just thought ...
>> Could it be usefull to add logging support to a file when build kdesvn
>> ....
>>
>> if i read and get all correctly .... ( there can be more nice way to
>> implement this )
>> Tested and at least this works
>>
>> in main Makefile  is part :
>> -----------------
>> ### Dynamically build targets for all the *_TARGETS
>> #
>> #
>> define DEP_template
>> build-$(1) :
>>         @rm -f status.$(HOST).$(1).ok status.$(HOST).$(1).err
>>         @$(MAKE) -f Makefile.$(1)
>>
>> .PHONY : build-$(1)
>> -----------------
>>
>> and if change 2 lines / add logging ... ( in bold )
>>
>> so it will look like :
>> ------------------
>> ### Dynamically build targets for all the *_TARGETS
>> #
>> #
>> define DEP_template
>> build-$(1) :
>>         @rm -f status.$(HOST).$(1).ok status.$(HOST).$(1).err
>> /tmp/KDE_$(1).log
>>         @$(MAKE) -f Makefile.$(1) | /usr/bin/tee /tmp/KDE_$(1).log
>>
>> .PHONY : build-$(1)
>> ------------------
>> This would make build logs also available as log files in /tmp as copy of
>> what is printed to screen.
>> Just idea ...
>> Feel free to add logging support to svn if like idea and change logfile
>> name better if like
>>
>> Cheers
>> - Pete
>>
>> P.S.
>> Been also trying to post prosess those created tar.gz files to pkg's ...
>> let's see if i manage to do it
>>
>
>
>
> --
> Lukas 'Luc' Oboril
> IRC nickname: luc^ at freenode
>
>
> When dealing with people, let us remember we are not dealing with creatures
> of logic. We are dealing with creatures of emotions, creatures bristling
> with prejudices and motivated by pride and vanity. Dale Carnegie
> _______________________________________________
> kde-discuss mailing list
> kde-discuss at opensolaris.org
> http://mail.opensolaris.org/mailman/listinfo/kde-discuss
>
>

Reply via email to