Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 01/22] Makefile: auto-target automatically pass --program-prefix=""
@ 2011-08-09 22:12 Yann E. MORIN
  2011-08-09 22:12 ` [Buildroot] [PATCH 02/22] mpg123: remove --program-prefix Yann E. MORIN
                   ` (21 more replies)
  0 siblings, 22 replies; 23+ messages in thread
From: Yann E. MORIN @ 2011-08-09 22:12 UTC (permalink / raw)
  To: buildroot

When cross-compiled, some packages incorrectly prefix their executables
with the target tuple.

Fix that by forcing the program prefix to the empty string when calling
./configure, but only when compiling for target, not for host.

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
---
 package/Makefile.autotools.in |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/package/Makefile.autotools.in b/package/Makefile.autotools.in
index 46ab861..7f04c36 100644
--- a/package/Makefile.autotools.in
+++ b/package/Makefile.autotools.in
@@ -100,6 +100,7 @@ define $(2)_CONFIGURE_CMDS
 		--prefix=/usr \
 		--exec-prefix=/usr \
 		--sysconfdir=/etc \
+		--program-prefix="" \
 		$$(DISABLE_DOCUMENTATION) \
 		$$(DISABLE_NLS) \
 		$$(DISABLE_LARGEFILE) \
-- 
1.7.2.5

^ permalink raw reply related	[flat|nested] 23+ messages in thread

* [Buildroot] [PATCH 02/22] mpg123: remove --program-prefix
  2011-08-09 22:12 [Buildroot] [PATCH 01/22] Makefile: auto-target automatically pass --program-prefix="" Yann E. MORIN
@ 2011-08-09 22:12 ` Yann E. MORIN
  2011-08-09 22:12 ` [Buildroot] [PATCH 03/22] taglib: " Yann E. MORIN
                   ` (20 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: Yann E. MORIN @ 2011-08-09 22:12 UTC (permalink / raw)
  To: buildroot

--program-prefix is now set in the auto-target infrastructure.

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
---
 package/multimedia/mpg123/mpg123.mk |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/package/multimedia/mpg123/mpg123.mk b/package/multimedia/mpg123/mpg123.mk
index 8eeb56d..43f631c 100644
--- a/package/multimedia/mpg123/mpg123.mk
+++ b/package/multimedia/mpg123/mpg123.mk
@@ -32,7 +32,7 @@ ifeq ($(BR2_x86_64),y)
 MPG123_CPU = x86-64
 endif
 
-MPG123_CONF_OPT += --program-prefix='' --with-cpu=$(MPG123_CPU)
+MPG123_CONF_OPT += --with-cpu=$(MPG123_CPU)
 
 # Check if ALSA is built, then we should configure after alsa-lib so
 # ./configure can find alsa-lib.
-- 
1.7.2.5

^ permalink raw reply related	[flat|nested] 23+ messages in thread

* [Buildroot] [PATCH 03/22] taglib: remove --program-prefix
  2011-08-09 22:12 [Buildroot] [PATCH 01/22] Makefile: auto-target automatically pass --program-prefix="" Yann E. MORIN
  2011-08-09 22:12 ` [Buildroot] [PATCH 02/22] mpg123: remove --program-prefix Yann E. MORIN
@ 2011-08-09 22:12 ` Yann E. MORIN
  2011-08-09 22:12 ` [Buildroot] [PATCH 04/22] dbus-glib: " Yann E. MORIN
                   ` (19 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: Yann E. MORIN @ 2011-08-09 22:12 UTC (permalink / raw)
  To: buildroot

--program-prefix is now set in the auto-target infrastructure.

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
---
 package/multimedia/taglib/taglib.mk |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/package/multimedia/taglib/taglib.mk b/package/multimedia/taglib/taglib.mk
index e5433a4..5b480bb 100644
--- a/package/multimedia/taglib/taglib.mk
+++ b/package/multimedia/taglib/taglib.mk
@@ -14,7 +14,7 @@ TAGLIB_CONF_ENV = \
 	ac_cv_header_cppunit_extensions_HelperMacros_h=no \
 	ac_cv_header_zlib_h=$(if $(BR2_PACKAGE_ZLIB),yes,no)
 
-TAGLIB_CONF_OPT = --disable-libsuffix --program-prefix=''
+TAGLIB_CONF_OPT = --disable-libsuffix
 
 define TAGLIB_REMOVE_DEVFILE
 	rm -f $(TARGET_DIR)/usr/bin/taglib-config
-- 
1.7.2.5

^ permalink raw reply related	[flat|nested] 23+ messages in thread

* [Buildroot] [PATCH 04/22] dbus-glib: remove --program-prefix
  2011-08-09 22:12 [Buildroot] [PATCH 01/22] Makefile: auto-target automatically pass --program-prefix="" Yann E. MORIN
  2011-08-09 22:12 ` [Buildroot] [PATCH 02/22] mpg123: remove --program-prefix Yann E. MORIN
  2011-08-09 22:12 ` [Buildroot] [PATCH 03/22] taglib: " Yann E. MORIN
@ 2011-08-09 22:12 ` Yann E. MORIN
  2011-08-09 22:12 ` [Buildroot] [PATCH 05/22] fakeroot: " Yann E. MORIN
                   ` (18 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: Yann E. MORIN @ 2011-08-09 22:12 UTC (permalink / raw)
  To: buildroot

--program-prefix is now set in the auto-target infrastructure.

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
---
 package/dbus-glib/dbus-glib.mk |    1 -
 1 files changed, 0 insertions(+), 1 deletions(-)

diff --git a/package/dbus-glib/dbus-glib.mk b/package/dbus-glib/dbus-glib.mk
index 6058b23..7c4e65b 100644
--- a/package/dbus-glib/dbus-glib.mk
+++ b/package/dbus-glib/dbus-glib.mk
@@ -13,7 +13,6 @@ DBUS_GLIB_CONF_ENV = ac_cv_have_abstract_sockets=yes \
 		have_abstract_sockets=yes
 
 DBUS_GLIB_CONF_OPT = --localstatedir=/var \
-		--program-prefix="" \
 		--disable-tests \
 		--disable-xml-docs \
 		--with-introspect-xml=$(DBUS_HOST_INTROSPECT) \
-- 
1.7.2.5

^ permalink raw reply related	[flat|nested] 23+ messages in thread

* [Buildroot] [PATCH 05/22] fakeroot: remove --program-prefix
  2011-08-09 22:12 [Buildroot] [PATCH 01/22] Makefile: auto-target automatically pass --program-prefix="" Yann E. MORIN
                   ` (2 preceding siblings ...)
  2011-08-09 22:12 ` [Buildroot] [PATCH 04/22] dbus-glib: " Yann E. MORIN
@ 2011-08-09 22:12 ` Yann E. MORIN
  2011-08-09 22:12 ` [Buildroot] [PATCH 06/22] jpeg: " Yann E. MORIN
                   ` (17 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: Yann E. MORIN @ 2011-08-09 22:12 UTC (permalink / raw)
  To: buildroot

--program-prefix is now set in the auto-target infrastructure.

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
---
 package/fakeroot/fakeroot.mk |    1 -
 1 files changed, 0 insertions(+), 1 deletions(-)

diff --git a/package/fakeroot/fakeroot.mk b/package/fakeroot/fakeroot.mk
index 29e9e5b..1271e7c 100644
--- a/package/fakeroot/fakeroot.mk
+++ b/package/fakeroot/fakeroot.mk
@@ -6,7 +6,6 @@
 FAKEROOT_VERSION:=1.9.5
 FAKEROOT_SOURCE:=fakeroot_$(FAKEROOT_VERSION).tar.gz
 FAKEROOT_SITE:=http://snapshot.debian.org/archive/debian/20080427T000000Z/pool/main/f/fakeroot/
-FAKEROOT_CONF_OPT = --program-prefix=''
 
 define FAKEROOT_PATCH_FAKEROOT_IN
 	# If using busybox getopt, make it be quiet.
-- 
1.7.2.5

^ permalink raw reply related	[flat|nested] 23+ messages in thread

* [Buildroot] [PATCH 06/22] jpeg: remove --program-prefix
  2011-08-09 22:12 [Buildroot] [PATCH 01/22] Makefile: auto-target automatically pass --program-prefix="" Yann E. MORIN
                   ` (3 preceding siblings ...)
  2011-08-09 22:12 ` [Buildroot] [PATCH 05/22] fakeroot: " Yann E. MORIN
@ 2011-08-09 22:12 ` Yann E. MORIN
  2011-08-09 22:12 ` [Buildroot] [PATCH 07/22] sylpheed: " Yann E. MORIN
                   ` (16 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: Yann E. MORIN @ 2011-08-09 22:12 UTC (permalink / raw)
  To: buildroot

--program-prefix is now set in the auto-target infrastructure.

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
---
 package/jpeg/jpeg.mk |    1 -
 1 files changed, 0 insertions(+), 1 deletions(-)

diff --git a/package/jpeg/jpeg.mk b/package/jpeg/jpeg.mk
index 30a6225..adbe330 100644
--- a/package/jpeg/jpeg.mk
+++ b/package/jpeg/jpeg.mk
@@ -8,7 +8,6 @@ JPEG_SITE = http://www.ijg.org/files/
 JPEG_SOURCE = jpegsrc.v$(JPEG_VERSION).tar.gz
 JPEG_INSTALL_STAGING = YES
 JPEG_INSTALL_TARGET = YES
-JPEG_CONF_OPT = --program-prefix=
 
 define JPEG_REMOVE_USELESS_TOOLS
 	rm -f $(addprefix $(TARGET_DIR)/usr/bin/,cjpeg djpeg jpegtrans rdjpgcom wrjpgcom)
-- 
1.7.2.5

^ permalink raw reply related	[flat|nested] 23+ messages in thread

* [Buildroot] [PATCH 07/22] sylpheed: remove --program-prefix
  2011-08-09 22:12 [Buildroot] [PATCH 01/22] Makefile: auto-target automatically pass --program-prefix="" Yann E. MORIN
                   ` (4 preceding siblings ...)
  2011-08-09 22:12 ` [Buildroot] [PATCH 06/22] jpeg: " Yann E. MORIN
@ 2011-08-09 22:12 ` Yann E. MORIN
  2011-08-09 22:12 ` [Buildroot] [PATCH 08/22] sdl_sound: " Yann E. MORIN
                   ` (15 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: Yann E. MORIN @ 2011-08-09 22:12 UTC (permalink / raw)
  To: buildroot

--program-prefix is now set in the auto-target infrastructure.

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
---
 package/sylpheed/sylpheed.mk |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/package/sylpheed/sylpheed.mk b/package/sylpheed/sylpheed.mk
index dbd2408..371341f 100644
--- a/package/sylpheed/sylpheed.mk
+++ b/package/sylpheed/sylpheed.mk
@@ -9,7 +9,7 @@ SYLPHEED_VERSION = $(SYLPHEED_VERSION_MAJOR).$(SYLPHEED_VERSION_MINOR)
 SYLPHEED_SOURCE = sylpheed-$(SYLPHEED_VERSION).tar.bz2
 SYLPHEED_SITE = http://sylpheed.sraoss.jp/sylpheed/v$(SYLPHEED_VERSION_MAJOR)
 
-SYLPHEED_CONF_OPT = --disable-gtkspell --program-prefix="" \
+SYLPHEED_CONF_OPT = --disable-gtkspell \
                     --includedir=$(STAGING_DIR)/usr/include
 
 SYLPHEED_DEPENDENCIES = host-pkg-config libgtk2
-- 
1.7.2.5

^ permalink raw reply related	[flat|nested] 23+ messages in thread

* [Buildroot] [PATCH 08/22] sdl_sound: remove --program-prefix
  2011-08-09 22:12 [Buildroot] [PATCH 01/22] Makefile: auto-target automatically pass --program-prefix="" Yann E. MORIN
                   ` (5 preceding siblings ...)
  2011-08-09 22:12 ` [Buildroot] [PATCH 07/22] sylpheed: " Yann E. MORIN
@ 2011-08-09 22:12 ` Yann E. MORIN
  2011-08-09 22:12 ` [Buildroot] [PATCH 09/22] lzop: " Yann E. MORIN
                   ` (14 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: Yann E. MORIN @ 2011-08-09 22:12 UTC (permalink / raw)
  To: buildroot

--program-prefix is now set in the auto-target infrastructure.

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
---
 package/sdl_sound/sdl_sound.mk |    3 +--
 1 files changed, 1 insertions(+), 2 deletions(-)

diff --git a/package/sdl_sound/sdl_sound.mk b/package/sdl_sound/sdl_sound.mk
index 8f51e05..0a0fe5b 100644
--- a/package/sdl_sound/sdl_sound.mk
+++ b/package/sdl_sound/sdl_sound.mk
@@ -31,8 +31,7 @@ SDL_SOUND_CONF_OPT = \
 	--with-sdl-prefix=$(STAGING_DIR)/usr \
 	--with-sdl-exec-prefix=$(STAGING_DIR)/usr \
 	--disable-sdltest \
-	--enable-static \
-	--program-prefix=''
+	--enable-static
 
 # enable mmx for newer x86's
 ifeq ($(BR2_i386)$(BR2_x86_i386)$(BR2_x86_i486)$(BR2_x86_i586)$(BR2_x86_pentiumpro)$(BR2_x86_geode),y)
-- 
1.7.2.5

^ permalink raw reply related	[flat|nested] 23+ messages in thread

* [Buildroot] [PATCH 09/22] lzop: remove --program-prefix
  2011-08-09 22:12 [Buildroot] [PATCH 01/22] Makefile: auto-target automatically pass --program-prefix="" Yann E. MORIN
                   ` (6 preceding siblings ...)
  2011-08-09 22:12 ` [Buildroot] [PATCH 08/22] sdl_sound: " Yann E. MORIN
@ 2011-08-09 22:12 ` Yann E. MORIN
  2011-08-09 22:12 ` [Buildroot] [PATCH 10/22] netcat: " Yann E. MORIN
                   ` (13 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: Yann E. MORIN @ 2011-08-09 22:12 UTC (permalink / raw)
  To: buildroot

--program-prefix is now set in the auto-target infrastructure.

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
---
 package/lzop/lzop.mk |    1 -
 1 files changed, 0 insertions(+), 1 deletions(-)

diff --git a/package/lzop/lzop.mk b/package/lzop/lzop.mk
index 796686a..e55c105 100644
--- a/package/lzop/lzop.mk
+++ b/package/lzop/lzop.mk
@@ -6,7 +6,6 @@
 LZOP_VERSION:=1.02rc1
 LZOP_SOURCE:=lzop-$(LZOP_VERSION).tar.gz
 LZOP_SITE:=http://www.lzop.org/download/
-LZOP_CONF_OPT:=--program-prefix=""
 LZOP_DEPENDENCIES:=lzo
 
 $(eval $(call AUTOTARGETS,package,lzop))
-- 
1.7.2.5

^ permalink raw reply related	[flat|nested] 23+ messages in thread

* [Buildroot] [PATCH 10/22] netcat: remove --program-prefix
  2011-08-09 22:12 [Buildroot] [PATCH 01/22] Makefile: auto-target automatically pass --program-prefix="" Yann E. MORIN
                   ` (7 preceding siblings ...)
  2011-08-09 22:12 ` [Buildroot] [PATCH 09/22] lzop: " Yann E. MORIN
@ 2011-08-09 22:12 ` Yann E. MORIN
  2011-08-09 22:12 ` [Buildroot] [PATCH 11/22] fbdump: " Yann E. MORIN
                   ` (12 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: Yann E. MORIN @ 2011-08-09 22:12 UTC (permalink / raw)
  To: buildroot

--program-prefix is now set in the auto-target infrastructure.

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
---
 package/netcat/netcat.mk |    1 -
 1 files changed, 0 insertions(+), 1 deletions(-)

diff --git a/package/netcat/netcat.mk b/package/netcat/netcat.mk
index f8263ef..31f6b71 100644
--- a/package/netcat/netcat.mk
+++ b/package/netcat/netcat.mk
@@ -10,6 +10,5 @@ NETCAT_SITE=http://$(BR2_SOURCEFORGE_MIRROR).dl.sourceforge.net/sourceforge/netc
 NETCAT_AUTORECONF:=NO
 NETCAT_INSTALL_STAGING:=NO
 NETCAT_INSTALL_TARGET:=YES
-NETCAT_CONF_OPT = --program-prefix=''
 
 $(eval $(call AUTOTARGETS,package,netcat))
-- 
1.7.2.5

^ permalink raw reply related	[flat|nested] 23+ messages in thread

* [Buildroot] [PATCH 11/22] fbdump: remove --program-prefix
  2011-08-09 22:12 [Buildroot] [PATCH 01/22] Makefile: auto-target automatically pass --program-prefix="" Yann E. MORIN
                   ` (8 preceding siblings ...)
  2011-08-09 22:12 ` [Buildroot] [PATCH 10/22] netcat: " Yann E. MORIN
@ 2011-08-09 22:12 ` Yann E. MORIN
  2011-08-09 22:12 ` [Buildroot] [PATCH 12/22] mysql_client: " Yann E. MORIN
                   ` (11 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: Yann E. MORIN @ 2011-08-09 22:12 UTC (permalink / raw)
  To: buildroot

--program-prefix is now set in the auto-target infrastructure.

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
---
 package/fbdump/fbdump.mk |    1 -
 1 files changed, 0 insertions(+), 1 deletions(-)

diff --git a/package/fbdump/fbdump.mk b/package/fbdump/fbdump.mk
index eb74d8b..521b0fd 100644
--- a/package/fbdump/fbdump.mk
+++ b/package/fbdump/fbdump.mk
@@ -7,7 +7,6 @@ FBDUMP_VERSION:=0.4.2
 FBDUMP_SOURCE:=fbdump-$(FBDUMP_VERSION).tar.gz
 FBDUMP_SITE:=http://www.rcdrummond.net/fbdump
 FBDUMP_AUTORECONF = NO
-FBDUMP_CONF_OPT = --program-prefix=''
 
 $(eval $(call AUTOTARGETS,package,fbdump))
 
-- 
1.7.2.5

^ permalink raw reply related	[flat|nested] 23+ messages in thread

* [Buildroot] [PATCH 12/22] mysql_client: remove --program-prefix
  2011-08-09 22:12 [Buildroot] [PATCH 01/22] Makefile: auto-target automatically pass --program-prefix="" Yann E. MORIN
                   ` (9 preceding siblings ...)
  2011-08-09 22:12 ` [Buildroot] [PATCH 11/22] fbdump: " Yann E. MORIN
@ 2011-08-09 22:12 ` Yann E. MORIN
  2011-08-09 22:12 ` [Buildroot] [PATCH 13/22] ntfsprogs: " Yann E. MORIN
                   ` (10 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: Yann E. MORIN @ 2011-08-09 22:12 UTC (permalink / raw)
  To: buildroot

--program-prefix is now set in the auto-target infrastructure.

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
---
 package/mysql_client/mysql_client.mk |    1 -
 1 files changed, 0 insertions(+), 1 deletions(-)

diff --git a/package/mysql_client/mysql_client.mk b/package/mysql_client/mysql_client.mk
index 9cd088c..49a7033 100644
--- a/package/mysql_client/mysql_client.mk
+++ b/package/mysql_client/mysql_client.mk
@@ -21,7 +21,6 @@ MYSQL_CLIENT_CONF_ENV = \
 	mysql_cv_new_rl_interface=yes
 
 MYSQL_CLIENT_CONF_OPT = \
-	--program-prefix="" \
 	--without-ndb-binlog \
 	--without-server \
 	--without-docs \
-- 
1.7.2.5

^ permalink raw reply related	[flat|nested] 23+ messages in thread

* [Buildroot] [PATCH 13/22] ntfsprogs: remove --program-prefix
  2011-08-09 22:12 [Buildroot] [PATCH 01/22] Makefile: auto-target automatically pass --program-prefix="" Yann E. MORIN
                   ` (10 preceding siblings ...)
  2011-08-09 22:12 ` [Buildroot] [PATCH 12/22] mysql_client: " Yann E. MORIN
@ 2011-08-09 22:12 ` Yann E. MORIN
  2011-08-09 22:12 ` [Buildroot] [PATCH 14/22] lighttpd: " Yann E. MORIN
                   ` (9 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: Yann E. MORIN @ 2011-08-09 22:12 UTC (permalink / raw)
  To: buildroot

--program-prefix is now set in the auto-target infrastructure.

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
---
 package/ntfsprogs/ntfsprogs.mk |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/package/ntfsprogs/ntfsprogs.mk b/package/ntfsprogs/ntfsprogs.mk
index 4557747..ea8a2a4 100644
--- a/package/ntfsprogs/ntfsprogs.mk
+++ b/package/ntfsprogs/ntfsprogs.mk
@@ -6,7 +6,7 @@
 NTFSPROGS_VERSION:=2.0.0
 NTFSPROGS_SOURCE:=ntfsprogs-$(NTFSPROGS_VERSION).tar.gz
 NTFSPROGS_SITE:=http://$(BR2_SOURCEFORGE_MIRROR).dl.sourceforge.net/sourceforge/linux-ntfs/
-NTFSPROGS_CONF_OPT:=--disable-gnome-vfs --program-prefix="" --disable-crypto
+NTFSPROGS_CONF_OPT:=--disable-gnome-vfs --disable-crypto
 NTFSPROGS_INSTALL_STAGING:=yes
 
 NTFSPROGS_BIN:=ntfscat ntfscluster ntfscmp ntfsfix ntfsinfo ntfsls
-- 
1.7.2.5

^ permalink raw reply related	[flat|nested] 23+ messages in thread

* [Buildroot] [PATCH 14/22] lighttpd: remove --program-prefix
  2011-08-09 22:12 [Buildroot] [PATCH 01/22] Makefile: auto-target automatically pass --program-prefix="" Yann E. MORIN
                   ` (11 preceding siblings ...)
  2011-08-09 22:12 ` [Buildroot] [PATCH 13/22] ntfsprogs: " Yann E. MORIN
@ 2011-08-09 22:12 ` Yann E. MORIN
  2011-08-09 22:12 ` [Buildroot] [PATCH 15/22] gamin: " Yann E. MORIN
                   ` (8 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: Yann E. MORIN @ 2011-08-09 22:12 UTC (permalink / raw)
  To: buildroot

--program-prefix is now set in the auto-target infrastructure.

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
---
 package/lighttpd/lighttpd.mk |    1 -
 1 files changed, 0 insertions(+), 1 deletions(-)

diff --git a/package/lighttpd/lighttpd.mk b/package/lighttpd/lighttpd.mk
index 45941eb..ba5f5cf 100644
--- a/package/lighttpd/lighttpd.mk
+++ b/package/lighttpd/lighttpd.mk
@@ -11,7 +11,6 @@ LIGHTTPD_CONF_OPT = \
 	--libdir=/usr/lib/lighttpd \
 	--libexecdir=/usr/lib \
 	--localstatedir=/var \
-	--program-prefix="" \
 	$(if $(BR2_LARGEFILE),,--disable-lfs)
 
 ifeq ($(BR2_PACKAGE_LIGHTTPD_OPENSSL),y)
-- 
1.7.2.5

^ permalink raw reply related	[flat|nested] 23+ messages in thread

* [Buildroot] [PATCH 15/22] gamin: remove --program-prefix
  2011-08-09 22:12 [Buildroot] [PATCH 01/22] Makefile: auto-target automatically pass --program-prefix="" Yann E. MORIN
                   ` (12 preceding siblings ...)
  2011-08-09 22:12 ` [Buildroot] [PATCH 14/22] lighttpd: " Yann E. MORIN
@ 2011-08-09 22:12 ` Yann E. MORIN
  2011-08-09 22:12 ` [Buildroot] [PATCH 16/22] ntfs-3g: " Yann E. MORIN
                   ` (7 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: Yann E. MORIN @ 2011-08-09 22:12 UTC (permalink / raw)
  To: buildroot

--program-prefix is now set in the auto-target infrastructure.

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
---
 package/gamin/gamin.mk |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/package/gamin/gamin.mk b/package/gamin/gamin.mk
index d691f60..326fd62 100644
--- a/package/gamin/gamin.mk
+++ b/package/gamin/gamin.mk
@@ -9,7 +9,7 @@ GAMIN_SITE = http://www.gnome.org/~veillard/gamin/sources
 GAMIN_AUTORECONF = YES
 GAMIN_INSTALL_STAGING = YES
 
-GAMIN_CONF_OPT = --program-prefix="" --disable-debug
+GAMIN_CONF_OPT = --disable-debug
 
 # python support broken
 GAMIN_CONF_OPT += --without-python
-- 
1.7.2.5

^ permalink raw reply related	[flat|nested] 23+ messages in thread

* [Buildroot] [PATCH 16/22] ntfs-3g: remove --program-prefix
  2011-08-09 22:12 [Buildroot] [PATCH 01/22] Makefile: auto-target automatically pass --program-prefix="" Yann E. MORIN
                   ` (13 preceding siblings ...)
  2011-08-09 22:12 ` [Buildroot] [PATCH 15/22] gamin: " Yann E. MORIN
@ 2011-08-09 22:12 ` Yann E. MORIN
  2011-08-09 22:12 ` [Buildroot] [PATCH 17/22] libargtable2: " Yann E. MORIN
                   ` (6 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: Yann E. MORIN @ 2011-08-09 22:12 UTC (permalink / raw)
  To: buildroot

--program-prefix is now set in the auto-target infrastructure.

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
---
 package/ntfs-3g/ntfs-3g.mk |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/package/ntfs-3g/ntfs-3g.mk b/package/ntfs-3g/ntfs-3g.mk
index 796e269..baabff2 100644
--- a/package/ntfs-3g/ntfs-3g.mk
+++ b/package/ntfs-3g/ntfs-3g.mk
@@ -7,7 +7,7 @@
 NTFS_3G_VERSION = 2010.10.2
 NTFS_3G_SOURCE = ntfs-3g-$(NTFS_3G_VERSION).tgz
 NTFS_3G_SITE = http://tuxera.com/opensource
-NTFS_3G_CONF_OPT = --disable-ldconfig --program-prefix=""
+NTFS_3G_CONF_OPT = --disable-ldconfig
 NTFS_3G_INSTALL_STAGING = YES
 
 $(eval $(call AUTOTARGETS,package,ntfs-3g))
-- 
1.7.2.5

^ permalink raw reply related	[flat|nested] 23+ messages in thread

* [Buildroot] [PATCH 17/22] libargtable2: remove --program-prefix
  2011-08-09 22:12 [Buildroot] [PATCH 01/22] Makefile: auto-target automatically pass --program-prefix="" Yann E. MORIN
                   ` (14 preceding siblings ...)
  2011-08-09 22:12 ` [Buildroot] [PATCH 16/22] ntfs-3g: " Yann E. MORIN
@ 2011-08-09 22:12 ` Yann E. MORIN
  2011-08-09 22:12 ` [Buildroot] [PATCH 18/22] fuse: " Yann E. MORIN
                   ` (5 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: Yann E. MORIN @ 2011-08-09 22:12 UTC (permalink / raw)
  To: buildroot

--program-prefix is now set in the auto-target infrastructure.

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
---
 package/libargtable2/libargtable2.mk |    3 +--
 1 files changed, 1 insertions(+), 2 deletions(-)

diff --git a/package/libargtable2/libargtable2.mk b/package/libargtable2/libargtable2.mk
index 5f388f9..4241e73 100644
--- a/package/libargtable2/libargtable2.mk
+++ b/package/libargtable2/libargtable2.mk
@@ -9,8 +9,7 @@ LIBARGTABLE2_SOURCE = argtable2-$(LIBARGTABLE2_VERSION).tar.gz
 LIBARGTABLE2_SITE = http://$(BR2_SOURCEFORGE_MIRROR).dl.sourceforge.net/sourceforge/argtable/
 
 LIBARGTABLE2_INSTALL_STAGING = YES
-LIBARGTABLE2_CONF_OPT= --program-prefix="" \
-		--disable-example \
+LIBARGTABLE2_CONF_OPT= --disable-example \
 		--disable-kernel-module \
 		--enable-lib \
 		--enable-util
-- 
1.7.2.5

^ permalink raw reply related	[flat|nested] 23+ messages in thread

* [Buildroot] [PATCH 18/22] fuse: remove --program-prefix
  2011-08-09 22:12 [Buildroot] [PATCH 01/22] Makefile: auto-target automatically pass --program-prefix="" Yann E. MORIN
                   ` (15 preceding siblings ...)
  2011-08-09 22:12 ` [Buildroot] [PATCH 17/22] libargtable2: " Yann E. MORIN
@ 2011-08-09 22:12 ` Yann E. MORIN
  2011-08-09 22:12 ` [Buildroot] [PATCH 19/22] dbus: " Yann E. MORIN
                   ` (4 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: Yann E. MORIN @ 2011-08-09 22:12 UTC (permalink / raw)
  To: buildroot

--program-prefix is now set in the auto-target infrastructure.

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
---
 package/fuse/libfuse.mk |    3 +--
 1 files changed, 1 insertions(+), 2 deletions(-)

diff --git a/package/fuse/libfuse.mk b/package/fuse/libfuse.mk
index 13a5194..45fb2f3 100644
--- a/package/fuse/libfuse.mk
+++ b/package/fuse/libfuse.mk
@@ -9,8 +9,7 @@ LIBFUSE_SOURCE = fuse-$(LIBFUSE_VERSION).tar.gz
 LIBFUSE_SITE = http://$(BR2_SOURCEFORGE_MIRROR).dl.sourceforge.net/sourceforge/fuse/
 
 LIBFUSE_INSTALL_STAGING = YES
-LIBFUSE_CONF_OPT= --program-prefix="" \
-		--disable-nls \
+LIBFUSE_CONF_OPT= --disable-nls \
 		--disable-example \
 		--disable-kernel-module \
 		--enable-lib \
-- 
1.7.2.5

^ permalink raw reply related	[flat|nested] 23+ messages in thread

* [Buildroot] [PATCH 19/22] dbus: remove --program-prefix
  2011-08-09 22:12 [Buildroot] [PATCH 01/22] Makefile: auto-target automatically pass --program-prefix="" Yann E. MORIN
                   ` (16 preceding siblings ...)
  2011-08-09 22:12 ` [Buildroot] [PATCH 18/22] fuse: " Yann E. MORIN
@ 2011-08-09 22:12 ` Yann E. MORIN
  2011-08-09 22:12 ` [Buildroot] [PATCH 20/22] tcpreplay: " Yann E. MORIN
                   ` (3 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: Yann E. MORIN @ 2011-08-09 22:12 UTC (permalink / raw)
  To: buildroot

--program-prefix is now set in the auto-target infrastructure.

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
---
 package/dbus/dbus.mk |    3 +--
 1 files changed, 1 insertions(+), 2 deletions(-)

diff --git a/package/dbus/dbus.mk b/package/dbus/dbus.mk
index 7c2bddd..d693039 100644
--- a/package/dbus/dbus.mk
+++ b/package/dbus/dbus.mk
@@ -12,8 +12,7 @@ DBUS_INSTALL_TARGET = YES
 DBUS_DEPENDENCIES = host-pkg-config
 
 DBUS_CONF_ENV = ac_cv_have_abstract_sockets=yes
-DBUS_CONF_OPT = --program-prefix="" \
-		--with-dbus-user=dbus \
+DBUS_CONF_OPT = --with-dbus-user=dbus \
 		--disable-tests \
 		--disable-asserts \
 		--enable-abstract-sockets \
-- 
1.7.2.5

^ permalink raw reply related	[flat|nested] 23+ messages in thread

* [Buildroot] [PATCH 20/22] tcpreplay: remove --program-prefix
  2011-08-09 22:12 [Buildroot] [PATCH 01/22] Makefile: auto-target automatically pass --program-prefix="" Yann E. MORIN
                   ` (17 preceding siblings ...)
  2011-08-09 22:12 ` [Buildroot] [PATCH 19/22] dbus: " Yann E. MORIN
@ 2011-08-09 22:12 ` Yann E. MORIN
  2011-08-09 22:12 ` [Buildroot] [PATCH 21/22] diretcfb: " Yann E. MORIN
                   ` (2 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: Yann E. MORIN @ 2011-08-09 22:12 UTC (permalink / raw)
  To: buildroot

--program-prefix is now set in the auto-target infrastructure.

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
---
 package/tcpreplay/tcpreplay.mk |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/package/tcpreplay/tcpreplay.mk b/package/tcpreplay/tcpreplay.mk
index f82867c..296f4eb 100644
--- a/package/tcpreplay/tcpreplay.mk
+++ b/package/tcpreplay/tcpreplay.mk
@@ -7,7 +7,7 @@
 TCPREPLAY_VERSION = 3.4.3
 TCPREPLAY_SITE = http://$(BR2_SOURCEFORGE_MIRROR).dl.sourceforge.net/tcpreplay
 TCPREPLAY_CONF_ENV = tr_cv_libpcap_version=">= 0.7.0"
-TCPREPLAY_CONF_OPT = --program-prefix="" --with-libpcap=$(STAGING_DIR)/usr
+TCPREPLAY_CONF_OPT = --with-libpcap=$(STAGING_DIR)/usr
 
 TCPREPLAY_DEPENDENCIES = uclibc libpcap
 
-- 
1.7.2.5

^ permalink raw reply related	[flat|nested] 23+ messages in thread

* [Buildroot] [PATCH 21/22] diretcfb: remove --program-prefix
  2011-08-09 22:12 [Buildroot] [PATCH 01/22] Makefile: auto-target automatically pass --program-prefix="" Yann E. MORIN
                   ` (18 preceding siblings ...)
  2011-08-09 22:12 ` [Buildroot] [PATCH 20/22] tcpreplay: " Yann E. MORIN
@ 2011-08-09 22:12 ` Yann E. MORIN
  2011-08-09 22:12 ` [Buildroot] [PATCH 22/22] radvd: " Yann E. MORIN
  2011-09-11 22:13 ` [Buildroot] [PATCH 01/22] Makefile: auto-target automatically pass --program-prefix="" Peter Korsgaard
  21 siblings, 0 replies; 23+ messages in thread
From: Yann E. MORIN @ 2011-08-09 22:12 UTC (permalink / raw)
  To: buildroot

--program-prefix is now set in the auto-target infrastructure.

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
---
 package/directfb/directfb.mk |    1 -
 1 files changed, 0 insertions(+), 1 deletions(-)

diff --git a/package/directfb/directfb.mk b/package/directfb/directfb.mk
index 5af65d7..5e05451 100644
--- a/package/directfb/directfb.mk
+++ b/package/directfb/directfb.mk
@@ -12,7 +12,6 @@ DIRECTFB_INSTALL_STAGING = YES
 DIRECTFB_CONF_OPT = \
 	--localstatedir=/var \
 	--disable-explicit-deps \
-	--program-prefix='' \
 	--enable-zlib \
 	--enable-freetype \
 	--enable-fbdev \
-- 
1.7.2.5

^ permalink raw reply related	[flat|nested] 23+ messages in thread

* [Buildroot] [PATCH 22/22] radvd: remove --program-prefix
  2011-08-09 22:12 [Buildroot] [PATCH 01/22] Makefile: auto-target automatically pass --program-prefix="" Yann E. MORIN
                   ` (19 preceding siblings ...)
  2011-08-09 22:12 ` [Buildroot] [PATCH 21/22] diretcfb: " Yann E. MORIN
@ 2011-08-09 22:12 ` Yann E. MORIN
  2011-09-11 22:13 ` [Buildroot] [PATCH 01/22] Makefile: auto-target automatically pass --program-prefix="" Peter Korsgaard
  21 siblings, 0 replies; 23+ messages in thread
From: Yann E. MORIN @ 2011-08-09 22:12 UTC (permalink / raw)
  To: buildroot

--program-prefix is now set in the auto-target infrastructure.

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
---
 package/radvd/radvd.mk |    1 -
 1 files changed, 0 insertions(+), 1 deletions(-)

diff --git a/package/radvd/radvd.mk b/package/radvd/radvd.mk
index fe8be5d..6b7468a 100644
--- a/package/radvd/radvd.mk
+++ b/package/radvd/radvd.mk
@@ -7,7 +7,6 @@ RADVD_VERSION:=1.6
 RADVD_SOURCE:=radvd-$(RADVD_VERSION).tar.gz
 RADVD_SITE:=http://www.litech.org/radvd/dist/
 RADVD_DEPENDENCIES:=flex host-flex
-RADVD_CONF_OPT:= --program-prefix=''
 
 define RADVD_INSTALL_INITSCRIPT
 	$(INSTALL) -m 0755 package/radvd/S50radvd $(TARGET_DIR)/etc/init.d
-- 
1.7.2.5

^ permalink raw reply related	[flat|nested] 23+ messages in thread

* [Buildroot] [PATCH 01/22] Makefile: auto-target automatically pass --program-prefix=""
  2011-08-09 22:12 [Buildroot] [PATCH 01/22] Makefile: auto-target automatically pass --program-prefix="" Yann E. MORIN
                   ` (20 preceding siblings ...)
  2011-08-09 22:12 ` [Buildroot] [PATCH 22/22] radvd: " Yann E. MORIN
@ 2011-09-11 22:13 ` Peter Korsgaard
  21 siblings, 0 replies; 23+ messages in thread
From: Peter Korsgaard @ 2011-09-11 22:13 UTC (permalink / raw)
  To: buildroot

>>>>> "Yann" == Yann E MORIN <yann.morin.1998@anciens.enib.fr> writes:

 Yann> When cross-compiled, some packages incorrectly prefix their executables
 Yann> with the target tuple.

 Yann> Fix that by forcing the program prefix to the empty string when calling
 Yann> ./configure, but only when compiling for target, not for host.

Committed entire series, thanks!

-- 
Bye, Peter Korsgaard

^ permalink raw reply	[flat|nested] 23+ messages in thread

end of thread, other threads:[~2011-09-11 22:13 UTC | newest]

Thread overview: 23+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-08-09 22:12 [Buildroot] [PATCH 01/22] Makefile: auto-target automatically pass --program-prefix="" Yann E. MORIN
2011-08-09 22:12 ` [Buildroot] [PATCH 02/22] mpg123: remove --program-prefix Yann E. MORIN
2011-08-09 22:12 ` [Buildroot] [PATCH 03/22] taglib: " Yann E. MORIN
2011-08-09 22:12 ` [Buildroot] [PATCH 04/22] dbus-glib: " Yann E. MORIN
2011-08-09 22:12 ` [Buildroot] [PATCH 05/22] fakeroot: " Yann E. MORIN
2011-08-09 22:12 ` [Buildroot] [PATCH 06/22] jpeg: " Yann E. MORIN
2011-08-09 22:12 ` [Buildroot] [PATCH 07/22] sylpheed: " Yann E. MORIN
2011-08-09 22:12 ` [Buildroot] [PATCH 08/22] sdl_sound: " Yann E. MORIN
2011-08-09 22:12 ` [Buildroot] [PATCH 09/22] lzop: " Yann E. MORIN
2011-08-09 22:12 ` [Buildroot] [PATCH 10/22] netcat: " Yann E. MORIN
2011-08-09 22:12 ` [Buildroot] [PATCH 11/22] fbdump: " Yann E. MORIN
2011-08-09 22:12 ` [Buildroot] [PATCH 12/22] mysql_client: " Yann E. MORIN
2011-08-09 22:12 ` [Buildroot] [PATCH 13/22] ntfsprogs: " Yann E. MORIN
2011-08-09 22:12 ` [Buildroot] [PATCH 14/22] lighttpd: " Yann E. MORIN
2011-08-09 22:12 ` [Buildroot] [PATCH 15/22] gamin: " Yann E. MORIN
2011-08-09 22:12 ` [Buildroot] [PATCH 16/22] ntfs-3g: " Yann E. MORIN
2011-08-09 22:12 ` [Buildroot] [PATCH 17/22] libargtable2: " Yann E. MORIN
2011-08-09 22:12 ` [Buildroot] [PATCH 18/22] fuse: " Yann E. MORIN
2011-08-09 22:12 ` [Buildroot] [PATCH 19/22] dbus: " Yann E. MORIN
2011-08-09 22:12 ` [Buildroot] [PATCH 20/22] tcpreplay: " Yann E. MORIN
2011-08-09 22:12 ` [Buildroot] [PATCH 21/22] diretcfb: " Yann E. MORIN
2011-08-09 22:12 ` [Buildroot] [PATCH 22/22] radvd: " Yann E. MORIN
2011-09-11 22:13 ` [Buildroot] [PATCH 01/22] Makefile: auto-target automatically pass --program-prefix="" Peter Korsgaard

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox