* [Buildroot] [pull request] Pull request for branch for-2011.05/remove-config-scripts
@ 2011-03-07 21:22 Thomas Petazzoni
2011-03-07 21:22 ` [Buildroot] [PATCH 1/6] imagemagick: remove *-config scripts from TARGET_DIR Thomas Petazzoni
` (7 more replies)
0 siblings, 8 replies; 9+ messages in thread
From: Thomas Petazzoni @ 2011-03-07 21:22 UTC (permalink / raw)
To: buildroot
The following changes since commit 0a064b48c9d1044b05aee65272f5af7f28879473:
Gustavo Zacarias (1):
gst-ffmpeg: bump to version 0.10.11
are available in the git repository at:
git://git.busybox.net/~tpetazzoni/git/buildroot for-2011.05/remove-config-scripts
Thomas Petazzoni (6):
imagemagick: remove *-config scripts from TARGET_DIR
neon: remove neon-config script from TARGET_DIR
libdnet: remove dnet-config script from TARGET_DIR
libpng: remove libpng*-config scripts from TARGET_DIR
libxml2: remove xml2-config script from TARGET_DIR
libxslt: remove xslt-config script from TARGET_DIR
package/imagemagick/imagemagick.mk | 10 ++++++++++
package/libdnet/libdnet.mk | 8 ++++++++
package/libpng/libpng.mk | 9 +++++++++
package/libxml2/libxml2.mk | 8 ++++++++
package/libxslt/libxslt.mk | 8 ++++++++
package/neon/neon.mk | 8 ++++++++
6 files changed, 51 insertions(+), 0 deletions(-)
Thanks,
--
Thomas Petazzoni
^ permalink raw reply [flat|nested] 9+ messages in thread
* [Buildroot] [PATCH 1/6] imagemagick: remove *-config scripts from TARGET_DIR
2011-03-07 21:22 [Buildroot] [pull request] Pull request for branch for-2011.05/remove-config-scripts Thomas Petazzoni
@ 2011-03-07 21:22 ` Thomas Petazzoni
2011-03-07 21:22 ` [Buildroot] [PATCH 2/6] neon: remove neon-config script " Thomas Petazzoni
` (6 subsequent siblings)
7 siblings, 0 replies; 9+ messages in thread
From: Thomas Petazzoni @ 2011-03-07 21:22 UTC (permalink / raw)
To: buildroot
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
---
package/imagemagick/imagemagick.mk | 10 ++++++++++
1 files changed, 10 insertions(+), 0 deletions(-)
diff --git a/package/imagemagick/imagemagick.mk b/package/imagemagick/imagemagick.mk
index 97c0041..7955db7 100644
--- a/package/imagemagick/imagemagick.mk
+++ b/package/imagemagick/imagemagick.mk
@@ -80,4 +80,14 @@ else
IMAGEMAGICK_CONF_OPT += --without-tiff
endif
+define IMAGEMAGICK_REMOVE_CONFIG_SCRIPTS
+ $(RM) -f $(addprefix $(TARGET_DIR)/usr/bin/, \
+ $(addsuffix -config, \
+ Magick MagickCore MagickWand Wand Magick++))
+endef
+
+ifneq ($(BR2_HAVE_DEVFILES),y)
+IMAGEMAGICK_POST_INSTALL_TARGET_HOOKS += IMAGEMAGICK_REMOVE_CONFIG_SCRIPTS
+endif
+
$(eval $(call AUTOTARGETS,package,imagemagick))
--
1.7.0.4
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [Buildroot] [PATCH 2/6] neon: remove neon-config script from TARGET_DIR
2011-03-07 21:22 [Buildroot] [pull request] Pull request for branch for-2011.05/remove-config-scripts Thomas Petazzoni
2011-03-07 21:22 ` [Buildroot] [PATCH 1/6] imagemagick: remove *-config scripts from TARGET_DIR Thomas Petazzoni
@ 2011-03-07 21:22 ` Thomas Petazzoni
2011-03-07 21:22 ` [Buildroot] [PATCH 3/6] libdnet: remove dnet-config " Thomas Petazzoni
` (5 subsequent siblings)
7 siblings, 0 replies; 9+ messages in thread
From: Thomas Petazzoni @ 2011-03-07 21:22 UTC (permalink / raw)
To: buildroot
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
---
package/neon/neon.mk | 8 ++++++++
1 files changed, 8 insertions(+), 0 deletions(-)
diff --git a/package/neon/neon.mk b/package/neon/neon.mk
index c570fc1..0c237dc 100644
--- a/package/neon/neon.mk
+++ b/package/neon/neon.mk
@@ -45,4 +45,12 @@ else
NEON_CONF_OPT+=--without-ssl
endif
+define NEON_REMOVE_CONFIG_SCRIPTS
+ $(RM) -f $(TARGET_DIR)/usr/bin/neon-config
+endef
+
+ifneq ($(BR2_HAVE_DEVFILES),y)
+NEON_POST_INSTALL_TARGET_HOOKS += NEON_REMOVE_CONFIG_SCRIPTS
+endif
+
$(eval $(call AUTOTARGETS,package,neon))
--
1.7.0.4
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [Buildroot] [PATCH 3/6] libdnet: remove dnet-config script from TARGET_DIR
2011-03-07 21:22 [Buildroot] [pull request] Pull request for branch for-2011.05/remove-config-scripts Thomas Petazzoni
2011-03-07 21:22 ` [Buildroot] [PATCH 1/6] imagemagick: remove *-config scripts from TARGET_DIR Thomas Petazzoni
2011-03-07 21:22 ` [Buildroot] [PATCH 2/6] neon: remove neon-config script " Thomas Petazzoni
@ 2011-03-07 21:22 ` Thomas Petazzoni
2011-03-07 21:22 ` [Buildroot] [PATCH 4/6] libpng: remove libpng*-config scripts " Thomas Petazzoni
` (4 subsequent siblings)
7 siblings, 0 replies; 9+ messages in thread
From: Thomas Petazzoni @ 2011-03-07 21:22 UTC (permalink / raw)
To: buildroot
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
---
package/libdnet/libdnet.mk | 8 ++++++++
1 files changed, 8 insertions(+), 0 deletions(-)
diff --git a/package/libdnet/libdnet.mk b/package/libdnet/libdnet.mk
index eb67b05..6dfecf9 100644
--- a/package/libdnet/libdnet.mk
+++ b/package/libdnet/libdnet.mk
@@ -31,4 +31,12 @@ endef
LIBDNET_POST_EXTRACT_HOOKS += LIBDNET_FIXUP_ACINCLUDE_M4
+define LIBDNET_REMOVE_CONFIG_SCRIPT
+ $(RM) -f $(TARGET_DIR)/usr/bin/dnet-config
+endef
+
+ifneq ($(BR2_HAVE_DEVFILES),y)
+LIBDNET_POST_INSTALL_TARGET_HOOKS += LIBDNET_REMOVE_CONFIG_SCRIPT
+endif
+
$(eval $(call AUTOTARGETS,package,libdnet))
--
1.7.0.4
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [Buildroot] [PATCH 4/6] libpng: remove libpng*-config scripts from TARGET_DIR
2011-03-07 21:22 [Buildroot] [pull request] Pull request for branch for-2011.05/remove-config-scripts Thomas Petazzoni
` (2 preceding siblings ...)
2011-03-07 21:22 ` [Buildroot] [PATCH 3/6] libdnet: remove dnet-config " Thomas Petazzoni
@ 2011-03-07 21:22 ` Thomas Petazzoni
2011-03-07 21:22 ` [Buildroot] [PATCH 5/6] libxml2: remove xml2-config script " Thomas Petazzoni
` (3 subsequent siblings)
7 siblings, 0 replies; 9+ messages in thread
From: Thomas Petazzoni @ 2011-03-07 21:22 UTC (permalink / raw)
To: buildroot
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
---
package/libpng/libpng.mk | 9 +++++++++
1 files changed, 9 insertions(+), 0 deletions(-)
diff --git a/package/libpng/libpng.mk b/package/libpng/libpng.mk
index 699561b..e64989d 100644
--- a/package/libpng/libpng.mk
+++ b/package/libpng/libpng.mk
@@ -22,5 +22,14 @@ endef
LIBPNG_POST_INSTALL_STAGING_HOOKS += LIBPNG_STAGING_LIBPNG12_CONFIG_FIXUP
+define LIBPNG_REMOVE_CONFIG_SCRIPTS
+ $(RM) -f $(TARGET_DIR)/usr/bin/libpng$(LIBPNG_SERIES)-config \
+ $(TARGET_DIR)/usr/bin/libpng-config
+endef
+
+ifneq ($(BR2_HAVE_DEVFILES),y)
+LIBPNG_POST_INSTALL_TARGET_HOOKS += LIBPNG_REMOVE_CONFIG_SCRIPTS
+endif
+
$(eval $(call AUTOTARGETS,package,libpng))
$(eval $(call AUTOTARGETS,package,libpng,host))
--
1.7.0.4
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [Buildroot] [PATCH 5/6] libxml2: remove xml2-config script from TARGET_DIR
2011-03-07 21:22 [Buildroot] [pull request] Pull request for branch for-2011.05/remove-config-scripts Thomas Petazzoni
` (3 preceding siblings ...)
2011-03-07 21:22 ` [Buildroot] [PATCH 4/6] libpng: remove libpng*-config scripts " Thomas Petazzoni
@ 2011-03-07 21:22 ` Thomas Petazzoni
2011-03-07 21:22 ` [Buildroot] [PATCH 6/6] libxslt: remove xslt-config " Thomas Petazzoni
` (2 subsequent siblings)
7 siblings, 0 replies; 9+ messages in thread
From: Thomas Petazzoni @ 2011-03-07 21:22 UTC (permalink / raw)
To: buildroot
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
---
package/libxml2/libxml2.mk | 8 ++++++++
1 files changed, 8 insertions(+), 0 deletions(-)
diff --git a/package/libxml2/libxml2.mk b/package/libxml2/libxml2.mk
index d07f631..2a267b2 100644
--- a/package/libxml2/libxml2.mk
+++ b/package/libxml2/libxml2.mk
@@ -30,6 +30,14 @@ HOST_LIBXML2_CONF_OPT = \
--enable-shared --without-debugging --without-python \
--without-threads
+define LIBXML2_REMOVE_CONFIG_SCRIPTS
+ $(RM) -f $(TARGET_DIR)/usr/bin/xml2-config
+endef
+
+ifneq ($(BR2_HAVE_DEVFILES),y)
+LIBXML2_POST_INSTALL_TARGET_HOOKS += LIBXML2_REMOVE_CONFIG_SCRIPTS
+endif
+
$(eval $(call AUTOTARGETS,package,libxml2))
$(eval $(call AUTOTARGETS,package,libxml2,host))
--
1.7.0.4
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [Buildroot] [PATCH 6/6] libxslt: remove xslt-config script from TARGET_DIR
2011-03-07 21:22 [Buildroot] [pull request] Pull request for branch for-2011.05/remove-config-scripts Thomas Petazzoni
` (4 preceding siblings ...)
2011-03-07 21:22 ` [Buildroot] [PATCH 5/6] libxml2: remove xml2-config script " Thomas Petazzoni
@ 2011-03-07 21:22 ` Thomas Petazzoni
2011-03-07 21:42 ` [Buildroot] [pull request] Pull request for branch for-2011.05/remove-config-scripts Mike Frysinger
2011-03-09 19:35 ` Peter Korsgaard
7 siblings, 0 replies; 9+ messages in thread
From: Thomas Petazzoni @ 2011-03-07 21:22 UTC (permalink / raw)
To: buildroot
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
---
package/libxslt/libxslt.mk | 8 ++++++++
1 files changed, 8 insertions(+), 0 deletions(-)
diff --git a/package/libxslt/libxslt.mk b/package/libxslt/libxslt.mk
index 5fa2f4c..1efdcf8 100644
--- a/package/libxslt/libxslt.mk
+++ b/package/libxslt/libxslt.mk
@@ -39,5 +39,13 @@ endef
LIBXSLT_POST_INSTALL_STAGING_HOOKS += LIBXSLT_XSLT_CONFIG_FIXUP
+define LIBXSLT_REMOVE_CONFIG_SCRIPTS
+ $(RM) -f $(TARGET_DIR)/usr/bin/xslt-config
+endef
+
+ifneq ($(BR2_HAVE_DEVFILES),y)
+LIBXSLT_POST_INSTALL_TARGET_HOOKS += LIBXSLT_REMOVE_CONFIG_SCRIPTS
+endif
+
$(eval $(call AUTOTARGETS,package,libxslt))
$(eval $(call AUTOTARGETS,package,libxslt,host))
--
1.7.0.4
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [Buildroot] [pull request] Pull request for branch for-2011.05/remove-config-scripts
2011-03-07 21:22 [Buildroot] [pull request] Pull request for branch for-2011.05/remove-config-scripts Thomas Petazzoni
` (5 preceding siblings ...)
2011-03-07 21:22 ` [Buildroot] [PATCH 6/6] libxslt: remove xslt-config " Thomas Petazzoni
@ 2011-03-07 21:42 ` Mike Frysinger
2011-03-09 19:35 ` Peter Korsgaard
7 siblings, 0 replies; 9+ messages in thread
From: Mike Frysinger @ 2011-03-07 21:42 UTC (permalink / raw)
To: buildroot
On Monday, March 07, 2011 16:22:44 Thomas Petazzoni wrote:
> The following changes since commit
> 0a064b48c9d1044b05aee65272f5af7f28879473: Gustavo Zacarias (1):
> gst-ffmpeg: bump to version 0.10.11
>
> are available in the git repository at:
>
> git://git.busybox.net/~tpetazzoni/git/buildroot
> for-2011.05/remove-config-scripts
>
> Thomas Petazzoni (6):
> imagemagick: remove *-config scripts from TARGET_DIR
> neon: remove neon-config script from TARGET_DIR
> libdnet: remove dnet-config script from TARGET_DIR
> libpng: remove libpng*-config scripts from TARGET_DIR
> libxml2: remove xml2-config script from TARGET_DIR
> libxslt: remove xslt-config script from TARGET_DIR
told you we should have adopted my one line change to the top level install :p
-mike
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 836 bytes
Desc: This is a digitally signed message part.
URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20110307/d46db732/attachment.asc>
^ permalink raw reply [flat|nested] 9+ messages in thread
* [Buildroot] [pull request] Pull request for branch for-2011.05/remove-config-scripts
2011-03-07 21:22 [Buildroot] [pull request] Pull request for branch for-2011.05/remove-config-scripts Thomas Petazzoni
` (6 preceding siblings ...)
2011-03-07 21:42 ` [Buildroot] [pull request] Pull request for branch for-2011.05/remove-config-scripts Mike Frysinger
@ 2011-03-09 19:35 ` Peter Korsgaard
7 siblings, 0 replies; 9+ messages in thread
From: Peter Korsgaard @ 2011-03-09 19:35 UTC (permalink / raw)
To: buildroot
>>>>> "Thomas" == Thomas Petazzoni <thomas.petazzoni@free-electrons.com> writes:
Thomas> The following changes since commit 0a064b48c9d1044b05aee65272f5af7f28879473:
Thomas> Gustavo Zacarias (1):
Thomas> gst-ffmpeg: bump to version 0.10.11
Thomas> are available in the git repository at:
Thomas> git://git.busybox.net/~tpetazzoni/git/buildroot for-2011.05/remove-config-scripts
Thomas> Thomas Petazzoni (6):
Thomas> imagemagick: remove *-config scripts from TARGET_DIR
Thomas> neon: remove neon-config script from TARGET_DIR
Thomas> libdnet: remove dnet-config script from TARGET_DIR
Thomas> libpng: remove libpng*-config scripts from TARGET_DIR
Thomas> libxml2: remove xml2-config script from TARGET_DIR
Thomas> libxslt: remove xslt-config script from TARGET_DIR
Pulled, thanks.
--
Bye, Peter Korsgaard
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2011-03-09 19:35 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-03-07 21:22 [Buildroot] [pull request] Pull request for branch for-2011.05/remove-config-scripts Thomas Petazzoni
2011-03-07 21:22 ` [Buildroot] [PATCH 1/6] imagemagick: remove *-config scripts from TARGET_DIR Thomas Petazzoni
2011-03-07 21:22 ` [Buildroot] [PATCH 2/6] neon: remove neon-config script " Thomas Petazzoni
2011-03-07 21:22 ` [Buildroot] [PATCH 3/6] libdnet: remove dnet-config " Thomas Petazzoni
2011-03-07 21:22 ` [Buildroot] [PATCH 4/6] libpng: remove libpng*-config scripts " Thomas Petazzoni
2011-03-07 21:22 ` [Buildroot] [PATCH 5/6] libxml2: remove xml2-config script " Thomas Petazzoni
2011-03-07 21:22 ` [Buildroot] [PATCH 6/6] libxslt: remove xslt-config " Thomas Petazzoni
2011-03-07 21:42 ` [Buildroot] [pull request] Pull request for branch for-2011.05/remove-config-scripts Mike Frysinger
2011-03-09 19:35 ` Peter Korsgaard
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox