* [Buildroot] svn commit: trunk/buildroot/package/liberation
@ 2009-01-12 12:40 laird at uclibc.org
2009-01-12 13:05 ` Bernhard Reutner-Fischer
2009-01-13 0:28 ` Hamish Moffatt
0 siblings, 2 replies; 11+ messages in thread
From: laird at uclibc.org @ 2009-01-12 12:40 UTC (permalink / raw)
To: buildroot
Author: laird
Date: 2009-01-12 12:40:48 +0000 (Mon, 12 Jan 2009)
New Revision: 24792
Log:
package/liberation/liberation.mk: Correct the makefile to what it should have been
Correct the makefile so that it works and is what I originally planned to add.
Signed-off-by: Daniel Laird <daniel.j.laird@nxp.com>
Modified:
trunk/buildroot/package/liberation/liberation.mk
Changeset:
Modified: trunk/buildroot/package/liberation/liberation.mk
===================================================================
--- trunk/buildroot/package/liberation/liberation.mk 2009-01-12 10:29:46 UTC (rev 24791)
+++ trunk/buildroot/package/liberation/liberation.mk 2009-01-12 12:40:48 UTC (rev 24792)
@@ -18,12 +18,12 @@
$(LIBERATION_CAT) $(DL_DIR)/$(LIBERATION_SOURCE) | tar -C $(BUILD_DIR) $(TAR_OPTIONS) -
touch $(LIBERATION_DIR)/.unpacked
-$(STAGING_DIR)/usr/share/fonts/.ttf: $(LIBERATION_DIR)/.unpacked
+$(STAGING_DIR)/usr/share/fonts/LiberationMono-Bold.ttf: $(LIBERATION_DIR)/.unpacked
-mkdir -p $(STAGING_DIR)/usr/share/fonts/liberation
$(INSTALL) -m0644 $(LIBERATION_DIR)/*.ttf $(STAGING_DIR)/usr/share/fonts/liberation/
touch -c $(STAGING_DIR)/usr/share/fonts/.ttf
-$(TARGET_DIR)/usr/share/fonts/LiberationMono-Bold.ttf: $(STAGING_DIR)/usr/share/fonts/.ttf
+$(TARGET_DIR)/usr/share/fonts/LiberationMono-Bold.ttf: $(STAGING_DIR)/usr/share/fonts/LiberationMono-Bold.ttf
-mkdir -p $(TARGET_DIR)/usr/share/fonts/liberation
$(INSTALL) -m0644 $(LIBERATION_DIR)/*.ttf $(TARGET_DIR)/usr/share/fonts/liberation/
touch -c $(TARGET_DIR)/usr/share/fonts/.ttf
^ permalink raw reply [flat|nested] 11+ messages in thread
* [Buildroot] svn commit: trunk/buildroot/package/liberation
2009-01-12 12:40 [Buildroot] svn commit: trunk/buildroot/package/liberation laird at uclibc.org
@ 2009-01-12 13:05 ` Bernhard Reutner-Fischer
2009-01-12 14:19 ` Daniel James Laird
2009-01-13 0:28 ` Hamish Moffatt
1 sibling, 1 reply; 11+ messages in thread
From: Bernhard Reutner-Fischer @ 2009-01-12 13:05 UTC (permalink / raw)
To: buildroot
On Mon, Jan 12, 2009 at 12:40:48PM +0000, laird at uclibc.org wrote:
>Author: laird
>Date: 2009-01-12 12:40:48 +0000 (Mon, 12 Jan 2009)
>New Revision: 24792
>
>Log:
>package/liberation/liberation.mk: Correct the makefile to what it should have been
>
>Correct the makefile so that it works and is what I originally planned to add.
>
>Signed-off-by: Daniel Laird <daniel.j.laird@nxp.com>
>
>
>
>Modified:
> trunk/buildroot/package/liberation/liberation.mk
>
>
>Changeset:
>Modified: trunk/buildroot/package/liberation/liberation.mk
>===================================================================
>--- trunk/buildroot/package/liberation/liberation.mk 2009-01-12 10:29:46 UTC (rev 24791)
>+++ trunk/buildroot/package/liberation/liberation.mk 2009-01-12 12:40:48 UTC (rev 24792)
>@@ -18,12 +18,12 @@
> $(LIBERATION_CAT) $(DL_DIR)/$(LIBERATION_SOURCE) | tar -C $(BUILD_DIR) $(TAR_OPTIONS) -
> touch $(LIBERATION_DIR)/.unpacked
touch $@
>
>-$(STAGING_DIR)/usr/share/fonts/.ttf: $(LIBERATION_DIR)/.unpacked
>+$(STAGING_DIR)/usr/share/fonts/LiberationMono-Bold.ttf: $(LIBERATION_DIR)/.unpacked
> -mkdir -p $(STAGING_DIR)/usr/share/fonts/liberation
The preferred thing to do is to use $(INSTALL) -d $(@D)
> $(INSTALL) -m0644 $(LIBERATION_DIR)/*.ttf $(STAGING_DIR)/usr/share/fonts/liberation/
okay.. the target is fonts/LiberationMono-Bold.ttf and you put the fonts into
fonts/liberation/
> touch -c $(STAGING_DIR)/usr/share/fonts/.ttf
See how it would be *so* much better to use 'touch -c $@' ?
>
>-$(TARGET_DIR)/usr/share/fonts/LiberationMono-Bold.ttf: $(STAGING_DIR)/usr/share/fonts/.ttf
>+$(TARGET_DIR)/usr/share/fonts/LiberationMono-Bold.ttf: $(STAGING_DIR)/usr/share/fonts/LiberationMono-Bold.ttf
> -mkdir -p $(TARGET_DIR)/usr/share/fonts/liberation
> $(INSTALL) -m0644 $(LIBERATION_DIR)/*.ttf $(TARGET_DIR)/usr/share/fonts/liberation/
> touch -c $(TARGET_DIR)/usr/share/fonts/.ttf
about the same 3 bugs as above.
Please, be more careful..
^ permalink raw reply [flat|nested] 11+ messages in thread
* [Buildroot] svn commit: trunk/buildroot/package/liberation
2009-01-12 13:05 ` Bernhard Reutner-Fischer
@ 2009-01-12 14:19 ` Daniel James Laird
0 siblings, 0 replies; 11+ messages in thread
From: Daniel James Laird @ 2009-01-12 14:19 UTC (permalink / raw)
To: buildroot
I will try and improve this makefile as per your suggestions and then submit it back in.
Cheers for the feedback
Dan
-----Original Message-----
From: buildroot-bounces@busybox.net [mailto:buildroot-bounces at busybox.net] On Behalf Of Bernhard Reutner-Fischer
Sent: 2009 Jan 12 13:06
To: buildroot at uclibc.org
Cc: laird at uclibc.org
Subject: Re: [Buildroot] svn commit: trunk/buildroot/package/liberation
On Mon, Jan 12, 2009 at 12:40:48PM +0000, laird at uclibc.org wrote:
>Author: laird
>Date: 2009-01-12 12:40:48 +0000 (Mon, 12 Jan 2009)
>New Revision: 24792
>
>Log:
>package/liberation/liberation.mk: Correct the makefile to what it should have been
>
>Correct the makefile so that it works and is what I originally planned to add.
>
>Signed-off-by: Daniel Laird <daniel.j.laird@nxp.com>
>
>
>
>Modified:
> trunk/buildroot/package/liberation/liberation.mk
>
>
>Changeset:
>Modified: trunk/buildroot/package/liberation/liberation.mk
>===================================================================
>--- trunk/buildroot/package/liberation/liberation.mk 2009-01-12 10:29:46 UTC (rev 24791)
>+++ trunk/buildroot/package/liberation/liberation.mk 2009-01-12 12:40:48 UTC (rev 24792)
>@@ -18,12 +18,12 @@
> $(LIBERATION_CAT) $(DL_DIR)/$(LIBERATION_SOURCE) | tar -C $(BUILD_DIR) $(TAR_OPTIONS) -
> touch $(LIBERATION_DIR)/.unpacked
touch $@
>
>-$(STAGING_DIR)/usr/share/fonts/.ttf: $(LIBERATION_DIR)/.unpacked
>+$(STAGING_DIR)/usr/share/fonts/LiberationMono-Bold.ttf: $(LIBERATION_DIR)/.unpacked
> -mkdir -p $(STAGING_DIR)/usr/share/fonts/liberation
The preferred thing to do is to use $(INSTALL) -d $(@D)
> $(INSTALL) -m0644 $(LIBERATION_DIR)/*.ttf $(STAGING_DIR)/usr/share/fonts/liberation/
okay.. the target is fonts/LiberationMono-Bold.ttf and you put the fonts into
fonts/liberation/
> touch -c $(STAGING_DIR)/usr/share/fonts/.ttf
See how it would be *so* much better to use 'touch -c $@' ?
>
>-$(TARGET_DIR)/usr/share/fonts/LiberationMono-Bold.ttf: $(STAGING_DIR)/usr/share/fonts/.ttf
>+$(TARGET_DIR)/usr/share/fonts/LiberationMono-Bold.ttf: $(STAGING_DIR)/usr/share/fonts/LiberationMono-Bold.ttf
> -mkdir -p $(TARGET_DIR)/usr/share/fonts/liberation
> $(INSTALL) -m0644 $(LIBERATION_DIR)/*.ttf $(TARGET_DIR)/usr/share/fonts/liberation/
> touch -c $(TARGET_DIR)/usr/share/fonts/.ttf
about the same 3 bugs as above.
Please, be more careful..
_______________________________________________
buildroot mailing list
buildroot at busybox.net
http://lists.busybox.net/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 11+ messages in thread
* [Buildroot] svn commit: trunk/buildroot/package/liberation
2009-01-12 12:40 [Buildroot] svn commit: trunk/buildroot/package/liberation laird at uclibc.org
2009-01-12 13:05 ` Bernhard Reutner-Fischer
@ 2009-01-13 0:28 ` Hamish Moffatt
2009-01-13 6:09 ` Peter Korsgaard
1 sibling, 1 reply; 11+ messages in thread
From: Hamish Moffatt @ 2009-01-13 0:28 UTC (permalink / raw)
To: buildroot
On Mon, Jan 12, 2009 at 12:40:48PM +0000, laird at uclibc.org wrote:
> -$(STAGING_DIR)/usr/share/fonts/.ttf: $(LIBERATION_DIR)/.unpacked
> +$(STAGING_DIR)/usr/share/fonts/LiberationMono-Bold.ttf: $(LIBERATION_DIR)/.unpacked
> -mkdir -p $(STAGING_DIR)/usr/share/fonts/liberation
> $(INSTALL) -m0644 $(LIBERATION_DIR)/*.ttf $(STAGING_DIR)/usr/share/fonts/liberation/
> touch -c $(STAGING_DIR)/usr/share/fonts/.ttf
>
> -$(TARGET_DIR)/usr/share/fonts/LiberationMono-Bold.ttf: $(STAGING_DIR)/usr/share/fonts/.ttf
> +$(TARGET_DIR)/usr/share/fonts/LiberationMono-Bold.ttf: $(STAGING_DIR)/usr/share/fonts/LiberationMono-Bold.ttf
> -mkdir -p $(TARGET_DIR)/usr/share/fonts/liberation
> $(INSTALL) -m0644 $(LIBERATION_DIR)/*.ttf $(TARGET_DIR)/usr/share/fonts/liberation/
> touch -c $(TARGET_DIR)/usr/share/fonts/.ttf
What's the purpose of the .ttf file touched in the staging and target
dirs?
Why is the font installed into the staging dir at all?
thanks
Hamish
--
Hamish Moffatt VK3SB <hamish@debian.org> <hamish@cloud.net.au>
^ permalink raw reply [flat|nested] 11+ messages in thread
* [Buildroot] svn commit: trunk/buildroot/package/liberation
2009-01-13 0:28 ` Hamish Moffatt
@ 2009-01-13 6:09 ` Peter Korsgaard
2009-01-13 7:30 ` danieljlaird at hotmail.com
0 siblings, 1 reply; 11+ messages in thread
From: Peter Korsgaard @ 2009-01-13 6:09 UTC (permalink / raw)
To: buildroot
>>>>> "Hamish" == Hamish Moffatt <hamish@cloud.net.au> writes:
>> touch -c $(TARGET_DIR)/usr/share/fonts/.ttf
Hamish> What's the purpose of the .ttf file touched in the staging
Hamish> and target dirs?
Yes, Bernhard noticed that as well.
Hamish> Why is the font installed into the staging dir at all?
Good question.
--
Bye, Peter Korsgaard
^ permalink raw reply [flat|nested] 11+ messages in thread
* [Buildroot] svn commit: trunk/buildroot/package/liberation
2009-01-13 6:09 ` Peter Korsgaard
@ 2009-01-13 7:30 ` danieljlaird at hotmail.com
0 siblings, 0 replies; 11+ messages in thread
From: danieljlaird at hotmail.com @ 2009-01-13 7:30 UTC (permalink / raw)
To: buildroot
will tidy this up today, sorry
Dan
--------------------------------------------------
From: "Peter Korsgaard" <jacmet@uclibc.org>
Sent: Tuesday, January 13, 2009 6:09 AM
To: <buildroot@busybox.net>
Cc: <buildroot@uclibc.org>
Subject: Re: [Buildroot] svn commit: trunk/buildroot/package/liberation
>>>>>> "Hamish" == Hamish Moffatt <hamish@cloud.net.au> writes:
>
> >> touch -c $(TARGET_DIR)/usr/share/fonts/.ttf
>
> Hamish> What's the purpose of the .ttf file touched in the staging
> Hamish> and target dirs?
>
> Yes, Bernhard noticed that as well.
>
> Hamish> Why is the font installed into the staging dir at all?
>
> Good question.
>
> --
> Bye, Peter Korsgaard
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot
>
^ permalink raw reply [flat|nested] 11+ messages in thread
* [Buildroot] svn commit: trunk/buildroot/package/liberation
@ 2009-01-13 10:37 laird at uclibc.org
2009-01-15 21:52 ` Ulf Samuelsson
0 siblings, 1 reply; 11+ messages in thread
From: laird at uclibc.org @ 2009-01-13 10:37 UTC (permalink / raw)
To: buildroot
Author: laird
Date: 2009-01-13 10:37:48 +0000 (Tue, 13 Jan 2009)
New Revision: 24813
Log:
package/liberation/liberation.mk: A further tidy up.....
Use touch -c $@
Do not install fonts into staging dir.
Signed-off-by: Daniel Laird <daniel.j.laird@nxp.com>
Modified:
trunk/buildroot/package/liberation/liberation.mk
Changeset:
Modified: trunk/buildroot/package/liberation/liberation.mk
===================================================================
--- trunk/buildroot/package/liberation/liberation.mk 2009-01-13 10:26:28 UTC (rev 24812)
+++ trunk/buildroot/package/liberation/liberation.mk 2009-01-13 10:37:48 UTC (rev 24813)
@@ -16,23 +16,17 @@
$(LIBERATION_DIR)/.unpacked: $(DL_DIR)/$(LIBERATION_SOURCE)
$(LIBERATION_CAT) $(DL_DIR)/$(LIBERATION_SOURCE) | tar -C $(BUILD_DIR) $(TAR_OPTIONS) -
- touch $(LIBERATION_DIR)/.unpacked
+ touch -c $@
-$(STAGING_DIR)/usr/share/fonts/LiberationMono-Bold.ttf: $(LIBERATION_DIR)/.unpacked
- -mkdir -p $(STAGING_DIR)/usr/share/fonts/liberation
- $(INSTALL) -m0644 $(LIBERATION_DIR)/*.ttf $(STAGING_DIR)/usr/share/fonts/liberation/
- touch -c $(STAGING_DIR)/usr/share/fonts/.ttf
-
-$(TARGET_DIR)/usr/share/fonts/LiberationMono-Bold.ttf: $(STAGING_DIR)/usr/share/fonts/LiberationMono-Bold.ttf
+$(TARGET_DIR)/usr/share/fonts/LiberationMono-Bold.ttf: $(LIBERATION_DIR)/.unpacked
-mkdir -p $(TARGET_DIR)/usr/share/fonts/liberation
$(INSTALL) -m0644 $(LIBERATION_DIR)/*.ttf $(TARGET_DIR)/usr/share/fonts/liberation/
- touch -c $(TARGET_DIR)/usr/share/fonts/.ttf
+ touch -c $@
liberation: uclibc $(TARGET_DIR)/usr/share/fonts/LiberationMono-Bold.ttf
liberation-clean:
rm -rf $(TARGET_DIR)/usr/share/fonts/liberation/
- rm -rf $(STAGING_DIR)/usr/share/fonts/liberation/
liberation-dirclean:
rm -rf $(LIBERATION_DIR)
^ permalink raw reply [flat|nested] 11+ messages in thread
* [Buildroot] svn commit: trunk/buildroot/package/liberation
2009-01-13 10:37 laird at uclibc.org
@ 2009-01-15 21:52 ` Ulf Samuelsson
2009-01-15 23:15 ` Peter Korsgaard
0 siblings, 1 reply; 11+ messages in thread
From: Ulf Samuelsson @ 2009-01-15 21:52 UTC (permalink / raw)
To: buildroot
tis 2009-01-13 klockan 10:37 +0000 skrev laird at uclibc.org:
> Author: laird
> Date: 2009-01-13 10:37:48 +0000 (Tue, 13 Jan 2009)
> New Revision: 24813
>
> Log:
> package/liberation/liberation.mk: A further tidy up.....
>
> Use touch -c $@
> Do not install fonts into staging dir.
>
> Signed-off-by: Daniel Laird <daniel.j.laird@nxp.com>
>
>
>
> Modified:
> trunk/buildroot/package/liberation/liberation.mk
>
>
> Changeset:
> Modified: trunk/buildroot/package/liberation/liberation.mk
> ===================================================================
> --- trunk/buildroot/package/liberation/liberation.mk 2009-01-13 10:26:28 UTC (rev 24812)
> +++ trunk/buildroot/package/liberation/liberation.mk 2009-01-13 10:37:48 UTC (rev 24813)
> @@ -16,23 +16,17 @@
>
> $(LIBERATION_DIR)/.unpacked: $(DL_DIR)/$(LIBERATION_SOURCE)
> $(LIBERATION_CAT) $(DL_DIR)/$(LIBERATION_SOURCE) | tar -C $(BUILD_DIR) $(TAR_OPTIONS) -
> - touch $(LIBERATION_DIR)/.unpacked
> + touch -c $@
>
> -$(STAGING_DIR)/usr/share/fonts/LiberationMono-Bold.ttf: $(LIBERATION_DIR)/.unpacked
> - -mkdir -p $(STAGING_DIR)/usr/share/fonts/liberation
> - $(INSTALL) -m0644 $(LIBERATION_DIR)/*.ttf $(STAGING_DIR)/usr/share/fonts/liberation/
> - touch -c $(STAGING_DIR)/usr/share/fonts/.ttf
> -
> -$(TARGET_DIR)/usr/share/fonts/LiberationMono-Bold.ttf: $(STAGING_DIR)/usr/share/fonts/LiberationMono-Bold.ttf
> +$(TARGET_DIR)/usr/share/fonts/LiberationMono-Bold.ttf: $(LIBERATION_DIR)/.unpacked
> -mkdir -p $(TARGET_DIR)/usr/share/fonts/liberation
> $(INSTALL) -m0644 $(LIBERATION_DIR)/*.ttf $(TARGET_DIR)/usr/share/fonts/liberation/
> - touch -c $(TARGET_DIR)/usr/share/fonts/.ttf
> + touch -c $@
You *still* put stamp files in the target root file system.
BR
Ulf Samuelsson
^ permalink raw reply [flat|nested] 11+ messages in thread
* [Buildroot] svn commit: trunk/buildroot/package/liberation
2009-01-15 21:52 ` Ulf Samuelsson
@ 2009-01-15 23:15 ` Peter Korsgaard
2009-01-16 6:46 ` Ulf Samuelsson
0 siblings, 1 reply; 11+ messages in thread
From: Peter Korsgaard @ 2009-01-15 23:15 UTC (permalink / raw)
To: buildroot
>>>>> "Ulf" == Ulf Samuelsson <ulf.samuelsson@atmel.com> writes:
Hi,
>> -$(TARGET_DIR)/usr/share/fonts/LiberationMono-Bold.ttf: $(STAGING_DIR)/usr/share/fonts/LiberationMono-Bold.ttf
>> +$(TARGET_DIR)/usr/share/fonts/LiberationMono-Bold.ttf: $(LIBERATION_DIR)/.unpacked
>> -mkdir -p $(TARGET_DIR)/usr/share/fonts/liberation
>> $(INSTALL) -m0644 $(LIBERATION_DIR)/*.ttf $(TARGET_DIR)/usr/share/fonts/liberation/
>> - touch -c $(TARGET_DIR)/usr/share/fonts/.ttf
>> + touch -c $@
Ulf> You *still* put stamp files in the target root file system.
Huh, $@ look to be
$(TARGET_DIR)/usr/share/fonts/LiberationMono-Bold.ttf, so that's fine.
--
Bye, Peter Korsgaard
^ permalink raw reply [flat|nested] 11+ messages in thread
* [Buildroot] svn commit: trunk/buildroot/package/liberation
2009-01-15 23:15 ` Peter Korsgaard
@ 2009-01-16 6:46 ` Ulf Samuelsson
0 siblings, 0 replies; 11+ messages in thread
From: Ulf Samuelsson @ 2009-01-16 6:46 UTC (permalink / raw)
To: buildroot
fre 2009-01-16 klockan 00:15 +0100 skrev Peter Korsgaard:
> >>>>> "Ulf" == Ulf Samuelsson <ulf.samuelsson@atmel.com> writes:
>
> Hi,
>
> >> -$(TARGET_DIR)/usr/share/fonts/LiberationMono-Bold.ttf: $(STAGING_DIR)/usr/share/fonts/LiberationMono-Bold.ttf
> >> +$(TARGET_DIR)/usr/share/fonts/LiberationMono-Bold.ttf: $(LIBERATION_DIR)/.unpacked
> >> -mkdir -p $(TARGET_DIR)/usr/share/fonts/liberation
> >> $(INSTALL) -m0644 $(LIBERATION_DIR)/*.ttf $(TARGET_DIR)/usr/share/fonts/liberation/
> >> - touch -c $(TARGET_DIR)/usr/share/fonts/.ttf
> >> + touch -c $@
>
> Ulf> You *still* put stamp files in the target root file system.
>
> Huh, $@ look to be
> $(TARGET_DIR)/usr/share/fonts/LiberationMono-Bold.ttf, so that's fine.
>
My mistake, sorry.
--
Ulf Samuelsson <ulf.samuelsson@atmel.com>
Atmel Nordic AB
^ permalink raw reply [flat|nested] 11+ messages in thread
* [Buildroot] svn commit: trunk/buildroot/package/liberation
@ 2009-01-10 0:20 ulf at uclibc.org
0 siblings, 0 replies; 11+ messages in thread
From: ulf at uclibc.org @ 2009-01-10 0:20 UTC (permalink / raw)
To: buildroot
Author: ulf
Date: 2009-01-10 00:20:05 +0000 (Sat, 10 Jan 2009)
New Revision: 24736
Log:
liberation internal dependencies are corrected
Modified:
trunk/buildroot/package/liberation/liberation.mk
Changeset:
Modified: trunk/buildroot/package/liberation/liberation.mk
===================================================================
--- trunk/buildroot/package/liberation/liberation.mk 2009-01-10 00:18:04 UTC (rev 24735)
+++ trunk/buildroot/package/liberation/liberation.mk 2009-01-10 00:20:05 UTC (rev 24736)
@@ -18,7 +18,7 @@
$(LIBERATION_CAT) $(DL_DIR)/$(LIBERATION_SOURCE) | tar -C $(BUILD_DIR) $(TAR_OPTIONS) -
touch $(LIBERATION_DIR)/.unpacked
-$(STAGING_DIR)/usr/share/fonts/LiberationMono-Bold.ttf: $(LIBERATION_DIR)/.unpacked
+$(STAGING_DIR)/usr/share/fonts/.ttf: $(LIBERATION_DIR)/.unpacked
-mkdir -p $(STAGING_DIR)/usr/share/fonts/liberation
$(INSTALL) -m0644 $(LIBERATION_DIR)/*.ttf $(STAGING_DIR)/usr/share/fonts/liberation/
touch -c $(STAGING_DIR)/usr/share/fonts/.ttf
^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2009-01-16 6:46 UTC | newest]
Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-01-12 12:40 [Buildroot] svn commit: trunk/buildroot/package/liberation laird at uclibc.org
2009-01-12 13:05 ` Bernhard Reutner-Fischer
2009-01-12 14:19 ` Daniel James Laird
2009-01-13 0:28 ` Hamish Moffatt
2009-01-13 6:09 ` Peter Korsgaard
2009-01-13 7:30 ` danieljlaird at hotmail.com
-- strict thread matches above, loose matches on Subject: below --
2009-01-13 10:37 laird at uclibc.org
2009-01-15 21:52 ` Ulf Samuelsson
2009-01-15 23:15 ` Peter Korsgaard
2009-01-16 6:46 ` Ulf Samuelsson
2009-01-10 0:20 ulf at uclibc.org
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox