* [Buildroot] svn commit: trunk/buildroot/package/grep
@ 2007-08-12 23:35 ulf at uclibc.org
0 siblings, 0 replies; 11+ messages in thread
From: ulf at uclibc.org @ 2007-08-12 23:35 UTC (permalink / raw)
To: buildroot
Author: ulf
Date: 2007-08-12 16:35:20 -0700 (Sun, 12 Aug 2007)
New Revision: 19477
Log:
grep depends on gettext
Modified:
trunk/buildroot/package/grep/grep.mk
Changeset:
Modified: trunk/buildroot/package/grep/grep.mk
===================================================================
--- trunk/buildroot/package/grep/grep.mk 2007-08-12 23:33:44 UTC (rev 19476)
+++ trunk/buildroot/package/grep/grep.mk 2007-08-12 23:35:20 UTC (rev 19477)
@@ -64,7 +64,7 @@
cp -a $(GNUGREP_DIR)/src/grep $(GNUGREP_DIR)/src/egrep \
$(GNUGREP_DIR)/src/fgrep $(TARGET_DIR)/bin/; fi
-grep: uclibc grep-target_binary
+grep: uclibc gettext libintl grep-target_binary
grep-clean:
$(MAKE) DESTDIR=$(TARGET_DIR) -C $(GNUGREP_DIR) uninstall
^ permalink raw reply [flat|nested] 11+ messages in thread
* [Buildroot] svn commit: trunk/buildroot/package/grep
@ 2007-08-12 23:36 ulf at uclibc.org
0 siblings, 0 replies; 11+ messages in thread
From: ulf at uclibc.org @ 2007-08-12 23:36 UTC (permalink / raw)
To: buildroot
Author: ulf
Date: 2007-08-12 16:36:57 -0700 (Sun, 12 Aug 2007)
New Revision: 19479
Log:
grep depends on gettext
Modified:
trunk/buildroot/package/grep/Config.in
Changeset:
Modified: trunk/buildroot/package/grep/Config.in
===================================================================
--- trunk/buildroot/package/grep/Config.in 2007-08-12 23:36:27 UTC (rev 19478)
+++ trunk/buildroot/package/grep/Config.in 2007-08-12 23:36:57 UTC (rev 19479)
@@ -1,7 +1,9 @@
config BR2_PACKAGE_GREP
bool "grep"
default n
+ select BR2_PACKAGE_GETTEXT
+ select BR2_PACKAGE_LIBINTL
help
The GNU regular expression matcher.
-
+ Needs gettext
http://www.gnu.org/software/grep/grep.html
^ permalink raw reply [flat|nested] 11+ messages in thread
* [Buildroot] svn commit: trunk/buildroot/package/grep
@ 2008-03-06 18:11 ninevoltz at uclibc.org
0 siblings, 0 replies; 11+ messages in thread
From: ninevoltz at uclibc.org @ 2008-03-06 18:11 UTC (permalink / raw)
To: buildroot
Author: ninevoltz
Date: 2008-03-06 10:11:51 -0800 (Thu, 06 Mar 2008)
New Revision: 21197
Log:
cleanup grep makefile
Modified:
trunk/buildroot/package/grep/grep.mk
Changeset:
Modified: trunk/buildroot/package/grep/grep.mk
===================================================================
--- trunk/buildroot/package/grep/grep.mk 2008-03-06 18:11:21 UTC (rev 21196)
+++ trunk/buildroot/package/grep/grep.mk 2008-03-06 18:11:51 UTC (rev 21197)
@@ -23,7 +23,7 @@
$(GNUGREP_CAT) $(GNUGREP_DIR).xxx/grep_$(GNUGREP_VERSION).tar.gz | tar -C $(BUILD_DIR) $(TAR_OPTIONS) -
rm -rf $(GNUGREP_DIR).xxx
$(CONFIG_UPDATE) $(GNUGREP_DIR)
- touch $(GNUGREP_DIR)/.unpacked
+ touch $@
$(GNUGREP_DIR)/.configured: $(GNUGREP_DIR)/.unpacked
(cd $(GNUGREP_DIR); rm -rf config.cache; \
@@ -49,7 +49,7 @@
--disable-perl-regexp \
--without-included-regex \
)
- touch $(GNUGREP_DIR)/.configured
+ touch $@
$(GNUGREP_DIR)/$(GNUGREP_BINARY): $(GNUGREP_DIR)/.configured
$(MAKE) -C $(GNUGREP_DIR)
^ permalink raw reply [flat|nested] 11+ messages in thread
* [Buildroot] svn commit: trunk/buildroot/package/grep
@ 2008-07-23 10:35 jacmet at uclibc.org
2008-07-23 11:27 ` Bernhard Fischer
0 siblings, 1 reply; 11+ messages in thread
From: jacmet at uclibc.org @ 2008-07-23 10:35 UTC (permalink / raw)
To: buildroot
Author: jacmet
Date: 2008-07-23 03:35:53 -0700 (Wed, 23 Jul 2008)
New Revision: 22930
Log:
grep: gettext/libintl is only required if locale is enabled
Modified:
trunk/buildroot/package/grep/Config.in
trunk/buildroot/package/grep/grep.mk
Changeset:
Modified: trunk/buildroot/package/grep/Config.in
===================================================================
--- trunk/buildroot/package/grep/Config.in 2008-07-23 10:35:50 UTC (rev 22929)
+++ trunk/buildroot/package/grep/Config.in 2008-07-23 10:35:53 UTC (rev 22930)
@@ -1,8 +1,8 @@
config BR2_PACKAGE_GREP
bool "grep"
- select BR2_PACKAGE_GETTEXT
- select BR2_PACKAGE_LIBINTL
+ select BR2_PACKAGE_GETTEXT if BR2_ENABLE_LOCALE
+ select BR2_PACKAGE_LIBINTL if BR2_ENABLE_LOCALE
help
The GNU regular expression matcher.
- Needs gettext
+
http://www.gnu.org/software/grep/grep.html
Modified: trunk/buildroot/package/grep/grep.mk
===================================================================
--- trunk/buildroot/package/grep/grep.mk 2008-07-23 10:35:50 UTC (rev 22929)
+++ trunk/buildroot/package/grep/grep.mk 2008-07-23 10:35:53 UTC (rev 22930)
@@ -11,6 +11,10 @@
GNUGREP_BINARY:=src/grep
GNUGREP_TARGET_BINARY:=bin/grep
+ifeq ($(BR2_ENABLE_LOCALE),y)
+GNUGREP_EXTRA_DEPS:=gettext libintl
+endif
+
$(DL_DIR)/$(GNUGREP_SOURCE):
$(WGET) -P $(DL_DIR) $(GNUGREP_SITE)/$(GNUGREP_SOURCE)
@@ -65,7 +69,7 @@
cp -a $(GNUGREP_DIR)/src/grep $(GNUGREP_DIR)/src/egrep \
$(GNUGREP_DIR)/src/fgrep $(TARGET_DIR)/bin/; fi
-grep: uclibc gettext libintl grep-target_binary
+grep: uclibc $(GNUGREP_EXTRA_DEPS) grep-target_binary
grep-clean:
$(MAKE) DESTDIR=$(TARGET_DIR) -C $(GNUGREP_DIR) uninstall
^ permalink raw reply [flat|nested] 11+ messages in thread
* [Buildroot] svn commit: trunk/buildroot/package/grep
2008-07-23 10:35 jacmet at uclibc.org
@ 2008-07-23 11:27 ` Bernhard Fischer
2008-07-23 12:09 ` Peter Korsgaard
0 siblings, 1 reply; 11+ messages in thread
From: Bernhard Fischer @ 2008-07-23 11:27 UTC (permalink / raw)
To: buildroot
On Wed, Jul 23, 2008 at 03:35:53AM -0700, jacmet at uclibc.org wrote:
>Author: jacmet
>Date: 2008-07-23 03:35:53 -0700 (Wed, 23 Jul 2008)
>New Revision: 22930
>
>Log:
>grep: gettext/libintl is only required if locale is enabled
>
>Modified:
> trunk/buildroot/package/grep/Config.in
> trunk/buildroot/package/grep/grep.mk
>
>
>Changeset:
>Modified: trunk/buildroot/package/grep/Config.in
>===================================================================
>--- trunk/buildroot/package/grep/Config.in 2008-07-23 10:35:50 UTC (rev 22929)
>+++ trunk/buildroot/package/grep/Config.in 2008-07-23 10:35:53 UTC (rev 22930)
>@@ -1,8 +1,8 @@
> config BR2_PACKAGE_GREP
> bool "grep"
>- select BR2_PACKAGE_GETTEXT
>- select BR2_PACKAGE_LIBINTL
>+ select BR2_PACKAGE_GETTEXT if BR2_ENABLE_LOCALE
>+ select BR2_PACKAGE_LIBINTL if BR2_ENABLE_LOCALE
> help
> The GNU regular expression matcher.
>- Needs gettext
>+
> http://www.gnu.org/software/grep/grep.html
>
>Modified: trunk/buildroot/package/grep/grep.mk
>===================================================================
>--- trunk/buildroot/package/grep/grep.mk 2008-07-23 10:35:50 UTC (rev 22929)
>+++ trunk/buildroot/package/grep/grep.mk 2008-07-23 10:35:53 UTC (rev 22930)
>@@ -11,6 +11,10 @@
> GNUGREP_BINARY:=src/grep
> GNUGREP_TARGET_BINARY:=bin/grep
>
>+ifeq ($(BR2_ENABLE_LOCALE),y)
>+GNUGREP_EXTRA_DEPS:=gettext libintl
>+endif
>+
> $(DL_DIR)/$(GNUGREP_SOURCE):
> $(WGET) -P $(DL_DIR) $(GNUGREP_SITE)/$(GNUGREP_SOURCE)
>
>@@ -65,7 +69,7 @@
> cp -a $(GNUGREP_DIR)/src/grep $(GNUGREP_DIR)/src/egrep \
> $(GNUGREP_DIR)/src/fgrep $(TARGET_DIR)/bin/; fi
>
>-grep: uclibc gettext libintl grep-target_binary
>+grep: uclibc $(GNUGREP_EXTRA_DEPS) grep-target_binary
grep: uclibc $(if $(BR2_ENABLE_LOCALE),gettext libintl) \
$(TARGET_DIR)/$(GNUGREP_TARGET_BINARY)
would have been less chatty, fwiw.
>
> grep-clean:
> $(MAKE) DESTDIR=$(TARGET_DIR) -C $(GNUGREP_DIR) uninstall
^ permalink raw reply [flat|nested] 11+ messages in thread
* [Buildroot] svn commit: trunk/buildroot/package/grep
2008-07-23 11:27 ` Bernhard Fischer
@ 2008-07-23 12:09 ` Peter Korsgaard
0 siblings, 0 replies; 11+ messages in thread
From: Peter Korsgaard @ 2008-07-23 12:09 UTC (permalink / raw)
To: buildroot
>>>>> "Bernhard" == Bernhard Fischer <rep.dot.nop@gmail.com> writes:
>> -grep: uclibc gettext libintl grep-target_binary
>> +grep: uclibc $(GNUGREP_EXTRA_DEPS) grep-target_binary
Bernhard> grep: uclibc $(if $(BR2_ENABLE_LOCALE),gettext libintl) \
Bernhard> $(TARGET_DIR)/$(GNUGREP_TARGET_BINARY)
Bernhard> would have been less chatty, fwiw.
True. It does make for a pretty long line though - Fixed.
Thanks.
--
Bye, Peter Korsgaard
^ permalink raw reply [flat|nested] 11+ messages in thread
* [Buildroot] svn commit: trunk/buildroot/package/grep
@ 2008-07-23 10:35 jacmet at uclibc.org
0 siblings, 0 replies; 11+ messages in thread
From: jacmet at uclibc.org @ 2008-07-23 10:35 UTC (permalink / raw)
To: buildroot
Author: jacmet
Date: 2008-07-23 03:35:56 -0700 (Wed, 23 Jul 2008)
New Revision: 22931
Log:
grep: fix target install and clean
Modified:
trunk/buildroot/package/grep/grep.mk
Changeset:
Modified: trunk/buildroot/package/grep/grep.mk
===================================================================
--- trunk/buildroot/package/grep/grep.mk 2008-07-23 10:35:53 UTC (rev 22930)
+++ trunk/buildroot/package/grep/grep.mk 2008-07-23 10:35:56 UTC (rev 22931)
@@ -58,21 +58,16 @@
$(GNUGREP_DIR)/$(GNUGREP_BINARY): $(GNUGREP_DIR)/.configured
$(MAKE) -C $(GNUGREP_DIR)
-# This stuff is needed to work around GNU make deficiencies
-grep-target_binary: $(GNUGREP_DIR)/$(GNUGREP_BINARY)
- @if [ -L $(TARGET_DIR)/$(GNUGREP_TARGET_BINARY) ]; then \
- rm -f $(TARGET_DIR)/$(GNUGREP_TARGET_BINARY); fi
- @if [ ! -f $(GNUGREP_DIR)/$(GNUGREP_BINARY) -o $(TARGET_DIR)/$(GNUGREP_TARGET_BINARY) -ot \
- $(GNUGREP_DIR)/$(GNUGREP_BINARY) ]; then \
- set -x; \
- rm -f $(TARGET_DIR)/bin/grep $(TARGET_DIR)/bin/egrep $(TARGET_DIR)/bin/fgrep; \
- cp -a $(GNUGREP_DIR)/src/grep $(GNUGREP_DIR)/src/egrep \
- $(GNUGREP_DIR)/src/fgrep $(TARGET_DIR)/bin/; fi
+$(TARGET_DIR)/$(GNUGREP_TARGET_BINARY): $(GNUGREP_DIR)/$(GNUGREP_BINARY)
+ for i in egrep fgrep grep; do \
+ $(INSTALL) $(GNUGREP_DIR)/src/$$i $(@D); \
+ done
+ $(STRIPCMD) $(STRIP_STRIP_ALL) $@
-grep: uclibc $(GNUGREP_EXTRA_DEPS) grep-target_binary
+grep: uclibc $(GNUGREP_EXTRA_DEPS) $(TARGET_DIR)/$(GNUGREP_TARGET_BINARY)
grep-clean:
- $(MAKE) DESTDIR=$(TARGET_DIR) -C $(GNUGREP_DIR) uninstall
+ rm -f $(addprefix $(TARGET_DIR)/bin/,egrep fgrep grep)
-$(MAKE) -C $(GNUGREP_DIR) clean
grep-dirclean:
^ permalink raw reply [flat|nested] 11+ messages in thread
* [Buildroot] svn commit: trunk/buildroot/package/grep
@ 2008-07-23 10:36 jacmet at uclibc.org
0 siblings, 0 replies; 11+ messages in thread
From: jacmet at uclibc.org @ 2008-07-23 10:36 UTC (permalink / raw)
To: buildroot
Author: jacmet
Date: 2008-07-23 03:35:59 -0700 (Wed, 23 Jul 2008)
New Revision: 22932
Log:
grep: cleanup configure args
Modified:
trunk/buildroot/package/grep/grep.mk
Changeset:
Modified: trunk/buildroot/package/grep/grep.mk
===================================================================
--- trunk/buildroot/package/grep/grep.mk 2008-07-23 10:35:56 UTC (rev 22931)
+++ trunk/buildroot/package/grep/grep.mk 2008-07-23 10:35:59 UTC (rev 22932)
@@ -37,17 +37,7 @@
--target=$(GNU_TARGET_NAME) \
--host=$(GNU_TARGET_NAME) \
--build=$(GNU_HOST_NAME) \
- --prefix=/usr \
- --exec-prefix=/usr \
- --bindir=/usr/bin \
- --sbindir=/usr/sbin \
- --libdir=/lib \
- --libexecdir=/usr/lib \
- --sysconfdir=/etc \
- --datadir=/usr/share \
- --localstatedir=/var \
- --mandir=/usr/man \
- --infodir=/usr/info \
+ --prefix=/ \
$(DISABLE_NLS) \
$(DISABLE_LARGEFILE) \
--disable-perl-regexp \
^ permalink raw reply [flat|nested] 11+ messages in thread
* [Buildroot] svn commit: trunk/buildroot/package/grep
@ 2008-07-23 12:08 jacmet at uclibc.org
0 siblings, 0 replies; 11+ messages in thread
From: jacmet at uclibc.org @ 2008-07-23 12:08 UTC (permalink / raw)
To: buildroot
Author: jacmet
Date: 2008-07-23 05:08:53 -0700 (Wed, 23 Jul 2008)
New Revision: 22936
Log:
grep: make locale handling less verbose
As suggested by Bernhard.
Modified:
trunk/buildroot/package/grep/grep.mk
Changeset:
Modified: trunk/buildroot/package/grep/grep.mk
===================================================================
--- trunk/buildroot/package/grep/grep.mk 2008-07-23 11:23:36 UTC (rev 22935)
+++ trunk/buildroot/package/grep/grep.mk 2008-07-23 12:08:53 UTC (rev 22936)
@@ -11,10 +11,6 @@
GNUGREP_BINARY:=src/grep
GNUGREP_TARGET_BINARY:=bin/grep
-ifeq ($(BR2_ENABLE_LOCALE),y)
-GNUGREP_EXTRA_DEPS:=gettext libintl
-endif
-
$(DL_DIR)/$(GNUGREP_SOURCE):
$(WGET) -P $(DL_DIR) $(GNUGREP_SITE)/$(GNUGREP_SOURCE)
@@ -54,8 +50,9 @@
done
$(STRIPCMD) $(STRIP_STRIP_ALL) $@
-grep: uclibc $(GNUGREP_EXTRA_DEPS) $(TARGET_DIR)/$(GNUGREP_TARGET_BINARY)
-
+grep: uclibc $(if $(BR2_ENABLE_LOCALE),gettext libintl) \
+ $(TARGET_DIR)/$(GNUGREP_TARGET_BINARY)
+ echo deps: $^
grep-clean:
rm -f $(addprefix $(TARGET_DIR)/bin/,egrep fgrep grep)
-$(MAKE) -C $(GNUGREP_DIR) clean
^ permalink raw reply [flat|nested] 11+ messages in thread
* [Buildroot] svn commit: trunk/buildroot/package/grep
@ 2009-01-09 13:34 jacmet at uclibc.org
0 siblings, 0 replies; 11+ messages in thread
From: jacmet at uclibc.org @ 2009-01-09 13:34 UTC (permalink / raw)
To: buildroot
Author: jacmet
Date: 2009-01-09 13:34:53 +0000 (Fri, 09 Jan 2009)
New Revision: 24731
Log:
grep: bump version, use GNU_MIRROR
Modified:
trunk/buildroot/package/grep/grep.mk
Changeset:
Modified: trunk/buildroot/package/grep/grep.mk
===================================================================
--- trunk/buildroot/package/grep/grep.mk 2009-01-09 06:31:01 UTC (rev 24730)
+++ trunk/buildroot/package/grep/grep.mk 2009-01-09 13:34:53 UTC (rev 24731)
@@ -3,9 +3,9 @@
# grep
#
#############################################################
-GNUGREP_VERSION:=2.5.1
-GNUGREP_SOURCE:=grep_$(GNUGREP_VERSION).ds1.orig.tar.gz
-GNUGREP_SITE:=$(BR2_DEBIAN_MIRROR)/debian/pool/main/g/grep/
+GNUGREP_VERSION:=2.5.3
+GNUGREP_SOURCE:=grep-$(GNUGREP_VERSION).tar.gz
+GNUGREP_SITE:=$(BR2_GNU_MIRROR)/grep
GNUGREP_DIR:=$(BUILD_DIR)/grep-$(GNUGREP_VERSION)
GNUGREP_CAT:=$(ZCAT)
GNUGREP_BINARY:=src/grep
@@ -19,9 +19,6 @@
$(GNUGREP_DIR)/.unpacked: $(DL_DIR)/$(GNUGREP_SOURCE)
rm -rf $(GNUGREP_DIR).xxx
$(GNUGREP_CAT) $(DL_DIR)/$(GNUGREP_SOURCE) | tar -C $(BUILD_DIR) $(TAR_OPTIONS) -
- mv $(GNUGREP_DIR) $(GNUGREP_DIR).xxx
- $(GNUGREP_CAT) $(GNUGREP_DIR).xxx/grep_$(GNUGREP_VERSION).tar.gz | tar -C $(BUILD_DIR) $(TAR_OPTIONS) -
- rm -rf $(GNUGREP_DIR).xxx
$(CONFIG_UPDATE) $(GNUGREP_DIR)
touch $@
^ permalink raw reply [flat|nested] 11+ messages in thread
* [Buildroot] svn commit: trunk/buildroot/package/grep
@ 2009-01-09 13:35 jacmet at uclibc.org
0 siblings, 0 replies; 11+ messages in thread
From: jacmet at uclibc.org @ 2009-01-09 13:35 UTC (permalink / raw)
To: buildroot
Author: jacmet
Date: 2009-01-09 13:35:09 +0000 (Fri, 09 Jan 2009)
New Revision: 24732
Log:
grep: convert to Makefile.autotools.in format
Modified:
trunk/buildroot/package/grep/grep.mk
Changeset:
Modified: trunk/buildroot/package/grep/grep.mk
===================================================================
--- trunk/buildroot/package/grep/grep.mk 2009-01-09 13:34:53 UTC (rev 24731)
+++ trunk/buildroot/package/grep/grep.mk 2009-01-09 13:35:09 UTC (rev 24732)
@@ -3,65 +3,12 @@
# grep
#
#############################################################
-GNUGREP_VERSION:=2.5.3
-GNUGREP_SOURCE:=grep-$(GNUGREP_VERSION).tar.gz
-GNUGREP_SITE:=$(BR2_GNU_MIRROR)/grep
-GNUGREP_DIR:=$(BUILD_DIR)/grep-$(GNUGREP_VERSION)
-GNUGREP_CAT:=$(ZCAT)
-GNUGREP_BINARY:=src/grep
-GNUGREP_TARGET_BINARY:=bin/grep
+GREP_VERSION:=2.5.3
+GREP_SOURCE:=grep-$(GREP_VERSION).tar.bz2
+GREP_SITE:=$(BR2_GNU_MIRROR)/grep
+GREP_CONF_OPT = --disable-perl-regexp --without-included-regex \
+ $(DISABLE_NLS) $(DISABLE_LARGEFILE)
-$(DL_DIR)/$(GNUGREP_SOURCE):
- $(WGET) -P $(DL_DIR) $(GNUGREP_SITE)/$(GNUGREP_SOURCE)
+GREP_DEPENDENCIES = $(if $(BR2_ENABLE_LOCALE),gettext libintl)
-grep-source: $(DL_DIR)/$(GNUGREP_SOURCE)
-
-$(GNUGREP_DIR)/.unpacked: $(DL_DIR)/$(GNUGREP_SOURCE)
- rm -rf $(GNUGREP_DIR).xxx
- $(GNUGREP_CAT) $(DL_DIR)/$(GNUGREP_SOURCE) | tar -C $(BUILD_DIR) $(TAR_OPTIONS) -
- $(CONFIG_UPDATE) $(GNUGREP_DIR)
- touch $@
-
-$(GNUGREP_DIR)/.configured: $(GNUGREP_DIR)/.unpacked
- (cd $(GNUGREP_DIR); rm -rf config.cache; \
- $(TARGET_CONFIGURE_OPTS) \
- $(TARGET_CONFIGURE_ARGS) \
- ./configure \
- --target=$(GNU_TARGET_NAME) \
- --host=$(GNU_TARGET_NAME) \
- --build=$(GNU_HOST_NAME) \
- --prefix=/ \
- $(DISABLE_NLS) \
- $(DISABLE_LARGEFILE) \
- --disable-perl-regexp \
- --without-included-regex \
- )
- touch $@
-
-$(GNUGREP_DIR)/$(GNUGREP_BINARY): $(GNUGREP_DIR)/.configured
- $(MAKE) -C $(GNUGREP_DIR)
-
-$(TARGET_DIR)/$(GNUGREP_TARGET_BINARY): $(GNUGREP_DIR)/$(GNUGREP_BINARY)
- for i in egrep fgrep grep; do \
- $(INSTALL) $(GNUGREP_DIR)/src/$$i $(@D); \
- done
- $(STRIPCMD) $(STRIP_STRIP_ALL) $@
-
-grep: uclibc $(if $(BR2_ENABLE_LOCALE),gettext libintl) \
- $(TARGET_DIR)/$(GNUGREP_TARGET_BINARY)
- echo deps: $^
-grep-clean:
- rm -f $(addprefix $(TARGET_DIR)/bin/,egrep fgrep grep)
- -$(MAKE) -C $(GNUGREP_DIR) clean
-
-grep-dirclean:
- rm -rf $(GNUGREP_DIR)
-
-#############################################################
-#
-# Toplevel Makefile options
-#
-#############################################################
-ifeq ($(BR2_PACKAGE_GREP),y)
-TARGETS+=grep
-endif
+$(eval $(call AUTOTARGETS,package,grep))
^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2009-01-09 13:35 UTC | newest]
Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-08-12 23:35 [Buildroot] svn commit: trunk/buildroot/package/grep ulf at uclibc.org
-- strict thread matches above, loose matches on Subject: below --
2007-08-12 23:36 ulf at uclibc.org
2008-03-06 18:11 ninevoltz at uclibc.org
2008-07-23 10:35 jacmet at uclibc.org
2008-07-23 11:27 ` Bernhard Fischer
2008-07-23 12:09 ` Peter Korsgaard
2008-07-23 10:35 jacmet at uclibc.org
2008-07-23 10:36 jacmet at uclibc.org
2008-07-23 12:08 jacmet at uclibc.org
2009-01-09 13:34 jacmet at uclibc.org
2009-01-09 13:35 jacmet 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