Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] svn commit: trunk/buildroot/package/pkgconfig
@ 2006-08-29 16:41 aldot at uclibc.org
  0 siblings, 0 replies; 5+ messages in thread
From: aldot at uclibc.org @ 2006-08-29 16:41 UTC (permalink / raw)
  To: buildroot

Author: aldot
Date: 2006-08-29 09:41:22 -0700 (Tue, 29 Aug 2006)
New Revision: 16012

Log:
- bump version


Modified:
   trunk/buildroot/package/pkgconfig/configure.patch
   trunk/buildroot/package/pkgconfig/pkgconfig.mk


Changeset:
Modified: trunk/buildroot/package/pkgconfig/configure.patch
===================================================================
--- trunk/buildroot/package/pkgconfig/configure.patch	2006-08-29 16:40:38 UTC (rev 16011)
+++ trunk/buildroot/package/pkgconfig/configure.patch	2006-08-29 16:41:22 UTC (rev 16012)
@@ -16,7 +16,7 @@
  AC_INIT(pkg-config.1)
  
 +AC_CONFIG_AUX_DIR(.)
- AM_INIT_AUTOMAKE(pkg-config, 0.20)
+ AM_INIT_AUTOMAKE(pkg-config, 0.21)
  AM_MAINTAINER_MODE
  
 @@ -92,8 +93,6 @@

Modified: trunk/buildroot/package/pkgconfig/pkgconfig.mk
===================================================================
--- trunk/buildroot/package/pkgconfig/pkgconfig.mk	2006-08-29 16:40:38 UTC (rev 16011)
+++ trunk/buildroot/package/pkgconfig/pkgconfig.mk	2006-08-29 16:41:22 UTC (rev 16012)
@@ -3,7 +3,7 @@
 # pkgconfig
 #
 #############################################################
-PKGCONFIG_VER:=0.20
+PKGCONFIG_VER:=0.21
 PKGCONFIG_SOURCE:=pkg-config-$(PKGCONFIG_VER).tar.gz
 PKGCONFIG_SITE:=http://pkgconfig.freedesktop.org/releases/
 PKGCONFIG_DIR:=$(BUILD_DIR)/pkg-config-$(PKGCONFIG_VER)

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

* [Buildroot] svn commit: trunk/buildroot/package/pkgconfig
@ 2007-01-14  4:20 andersen at uclibc.org
  0 siblings, 0 replies; 5+ messages in thread
From: andersen at uclibc.org @ 2007-01-14  4:20 UTC (permalink / raw)
  To: buildroot

Author: andersen
Date: 2007-01-13 20:20:57 -0800 (Sat, 13 Jan 2007)
New Revision: 17289

Log:
oops, silence some debugging noise


Modified:
   trunk/buildroot/package/pkgconfig/pkgconfig-filter.sh


Changeset:
Modified: trunk/buildroot/package/pkgconfig/pkgconfig-filter.sh
===================================================================
--- trunk/buildroot/package/pkgconfig/pkgconfig-filter.sh	2007-01-14 04:10:14 UTC (rev 17288)
+++ trunk/buildroot/package/pkgconfig/pkgconfig-filter.sh	2007-01-14 04:20:57 UTC (rev 17289)
@@ -17,11 +17,11 @@
 	sed -e "s~\-L/~-L=/~g; s~\-I/~-I=/~g;" |
 	sed -e "s~\-L\=~-L$PKG_CONFIG_SYSROOT~g; s~\-I\=~-I$PKG_CONFIG_SYSROOT~g;"
 then
-	echo "PKG_CONFIG_LIBDIR=$PKG_CONFIG_LIBDIR" >&2
-	echo "PKG_CONFIG_PATH=$PKG_CONFIG_PATH" >&2
-	echo "OKAY" >&2;
+	#echo "PKG_CONFIG_LIBDIR=$PKG_CONFIG_LIBDIR" >&2
+	#echo "PKG_CONFIG_PATH=$PKG_CONFIG_PATH" >&2
+	#echo "OKAY" >&2;
 	exit 0;
 else
 	echo "pkg-config failed!" >&2
-	exit 1
+	exit $?
 fi

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

* [Buildroot] svn commit: trunk/buildroot/package/pkgconfig
@ 2007-06-21 22:05 aldot at uclibc.org
  0 siblings, 0 replies; 5+ messages in thread
From: aldot at uclibc.org @ 2007-06-21 22:05 UTC (permalink / raw)
  To: buildroot

Author: aldot
Date: 2007-06-21 15:05:39 -0700 (Thu, 21 Jun 2007)
New Revision: 18885

Log:
- use the correct path to the pkgconfig .pc


Modified:
   trunk/buildroot/package/pkgconfig/pkgconfig.mk


Changeset:
Modified: trunk/buildroot/package/pkgconfig/pkgconfig.mk
===================================================================
--- trunk/buildroot/package/pkgconfig/pkgconfig.mk	2007-06-21 16:58:36 UTC (rev 18884)
+++ trunk/buildroot/package/pkgconfig/pkgconfig.mk	2007-06-21 22:05:39 UTC (rev 18885)
@@ -48,7 +48,7 @@
 	$(MAKE) DESTDIR=$(STAGING_DIR) -C $(PKGCONFIG_DIR) install
 	mv $(STAGING_DIR)/usr/bin/pkg-config $(STAGING_DIR)/usr/bin/pkg-config.real
 	cp package/pkgconfig/pkgconfig-filter.sh $(STAGING_DIR)/usr/bin/pkg-config
-	mkdir -p $(STAGING_DIR)/lib/pkgconfig
+	mkdir -p $(STAGING_DIR)/usr/lib/pkgconfig
 	rm -rf $(STAGING_DIR)/share/locale $(STAGING_DIR)/usr/info \
 		$(STAGING_DIR)/usr/man $(STAGING_DIR)/usr/share/doc
 

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

* [Buildroot] svn commit: trunk/buildroot/package/pkgconfig
@ 2008-04-01 15:29 jacmet at uclibc.org
  0 siblings, 0 replies; 5+ messages in thread
From: jacmet at uclibc.org @ 2008-04-01 15:29 UTC (permalink / raw)
  To: buildroot

Author: jacmet
Date: 2008-04-01 08:29:03 -0700 (Tue, 01 Apr 2008)
New Revision: 21612

Log:
pkgconfig: Return appropriate error code from pkgconfig script

Patch by Will Newton.

Currently the wrapper script for pkgconfig clobbers the return status
of pkgconfig. This is a problem for example when someone tries to run
"pkgconfig --exists". This patch should allow the correct return code
to be passed through. Note it uses the "pipefail" option that was
introduced with bash 3.


Modified:
   trunk/buildroot/package/pkgconfig/pkgconfig-filter.sh


Changeset:
Modified: trunk/buildroot/package/pkgconfig/pkgconfig-filter.sh
===================================================================
--- trunk/buildroot/package/pkgconfig/pkgconfig-filter.sh	2008-04-01 14:50:40 UTC (rev 21611)
+++ trunk/buildroot/package/pkgconfig/pkgconfig-filter.sh	2008-04-01 15:29:03 UTC (rev 21612)
@@ -2,6 +2,8 @@
 # filter the output from pkg-config (renamed as pkg-config.real)
 # and ensures PKG_CONFIG_SYSROOT is prepended to all paths
 
+set -o pipefail
+
 CMD=$0
 
 if [ ! "$PKG_CONFIG_SYSROOT" ]; then
@@ -22,6 +24,5 @@
 	#echo "OKAY" >&2;
 	exit 0;
 else
-	echo "pkg-config failed!" >&2
 	exit $?
 fi

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

* [Buildroot] svn commit: trunk/buildroot/package/pkgconfig
@ 2008-07-04  2:12 correa at uclibc.org
  0 siblings, 0 replies; 5+ messages in thread
From: correa at uclibc.org @ 2008-07-04  2:12 UTC (permalink / raw)
  To: buildroot

Author: correa
Date: 2008-07-03 19:12:21 -0700 (Thu, 03 Jul 2008)
New Revision: 22620

Log:
Minor clean-up

Modified:
   trunk/buildroot/package/pkgconfig/pkgconfig.mk


Changeset:
Modified: trunk/buildroot/package/pkgconfig/pkgconfig.mk
===================================================================
--- trunk/buildroot/package/pkgconfig/pkgconfig.mk	2008-07-03 08:29:26 UTC (rev 22619)
+++ trunk/buildroot/package/pkgconfig/pkgconfig.mk	2008-07-04 02:12:21 UTC (rev 22620)
@@ -19,7 +19,7 @@
 $(PKGCONFIG_DIR)/.unpacked: $(DL_DIR)/$(PKGCONFIG_SOURCE)
 	$(PKGCONFIG_CAT) $(DL_DIR)/$(PKGCONFIG_SOURCE) | tar -C $(BUILD_DIR) $(TAR_OPTIONS) -
 	toolchain/patch-kernel.sh $(PKGCONFIG_DIR) package/pkgconfig/ \*.patch
-	touch $(PKGCONFIG_DIR)/.unpacked
+	touch $@
 
 $(PKGCONFIG_DIR)/.configured: $(PKGCONFIG_DIR)/.unpacked
 	(cd $(PKGCONFIG_DIR); rm -rf config.cache; \
@@ -30,7 +30,7 @@
 		$(DISABLE_NLS) \
 		$(DISABLE_LARGEFILE) \
 	)
-	touch $(PKGCONFIG_DIR)/.configured
+	touch $@
 
 $(PKGCONFIG_DIR)/$(PKGCONFIG_BINARY): $(PKGCONFIG_DIR)/.configured
 	$(MAKE) -C $(PKGCONFIG_DIR)

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

end of thread, other threads:[~2008-07-04  2:12 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-01-14  4:20 [Buildroot] svn commit: trunk/buildroot/package/pkgconfig andersen at uclibc.org
  -- strict thread matches above, loose matches on Subject: below --
2008-07-04  2:12 correa at uclibc.org
2008-04-01 15:29 jacmet at uclibc.org
2007-06-21 22:05 aldot at uclibc.org
2006-08-29 16:41 aldot 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