* [Buildroot] svn commit: trunk/buildroot/package/libtool
@ 2008-09-22 8:11 jacmet at uclibc.org
0 siblings, 0 replies; 4+ messages in thread
From: jacmet at uclibc.org @ 2008-09-22 8:11 UTC (permalink / raw)
To: buildroot
Author: jacmet
Date: 2008-09-22 01:11:02 -0700 (Mon, 22 Sep 2008)
New Revision: 23451
Log:
libtool: don't error on missing directories in clean targets
Modified:
trunk/buildroot/package/libtool/libtool.mk
Changeset:
Modified: trunk/buildroot/package/libtool/libtool.mk
===================================================================
--- trunk/buildroot/package/libtool/libtool.mk 2008-09-21 15:29:29 UTC (rev 23450)
+++ trunk/buildroot/package/libtool/libtool.mk 2008-09-22 08:11:02 UTC (rev 23451)
@@ -90,7 +90,7 @@
libtool: uclibc $(TARGET_DIR)/$(LIBTOOL_TARGET_BINARY)
libtool-clean:
- $(MAKE) DESTDIR=$(TARGET_DIR) CC=$(TARGET_CC) -C $(LIBTOOL_DIR) uninstall
+ -$(MAKE) DESTDIR=$(TARGET_DIR) CC=$(TARGET_CC) -C $(LIBTOOL_DIR) uninstall
-$(MAKE) -C $(LIBTOOL_DIR) clean
libtool-cross: uclibc $(LIBTOOL_DIR)/$(LIBTOOL_BINARY)
@@ -138,7 +138,7 @@
host-libtool: $(LIBTOOL)
host-libtool-clean:
- $(MAKE) -C $(LIBTOOL_HOST_DIR) uninstall
+ -$(MAKE) -C $(LIBTOOL_HOST_DIR) uninstall
-$(MAKE) -C $(LIBTOOL_HOST_DIR) clean
host-libtool-dirclean:
^ permalink raw reply [flat|nested] 4+ messages in thread
* [Buildroot] svn commit: trunk/buildroot/package/libtool
@ 2009-01-04 6:04 nkukard at uclibc.org
2009-01-04 6:04 ` Nigel Kukard
0 siblings, 1 reply; 4+ messages in thread
From: nkukard at uclibc.org @ 2009-01-04 6:04 UTC (permalink / raw)
To: buildroot
Author: nkukard
Date: 2009-01-04 06:04:50 +0000 (Sun, 04 Jan 2009)
New Revision: 24683
Log:
Use target ar & ranlib when generating static archives, the host tools were being used when libltdl.a was being generated
Modified:
trunk/buildroot/package/libtool/libtool.mk
Changeset:
Modified: trunk/buildroot/package/libtool/libtool.mk
===================================================================
--- trunk/buildroot/package/libtool/libtool.mk 2009-01-04 06:02:30 UTC (rev 24682)
+++ trunk/buildroot/package/libtool/libtool.mk 2009-01-04 06:04:50 UTC (rev 24683)
@@ -56,7 +56,7 @@
touch $@
$(LIBTOOL_DIR)/$(LIBTOOL_BINARY): $(LIBTOOL_DIR)/.configured
- $(MAKE) CC=$(TARGET_CC) -C $(LIBTOOL_DIR)
+ $(MAKE) CC=$(TARGET_CC) RANLIB=$(TARGET_RANLIB) AR=$(TARGET_AR) -C $(LIBTOOL_DIR)
touch -c $@
$(TARGET_DIR)/$(LIBTOOL_TARGET_BINARY): $(LIBTOOL_DIR)/$(LIBTOOL_BINARY)
@@ -90,7 +90,7 @@
libtool: uclibc $(TARGET_DIR)/$(LIBTOOL_TARGET_BINARY)
libtool-clean:
- -$(MAKE) DESTDIR=$(TARGET_DIR) CC=$(TARGET_CC) -C $(LIBTOOL_DIR) uninstall
+ -$(MAKE) DESTDIR=$(TARGET_DIR) -C $(LIBTOOL_DIR) uninstall
-$(MAKE) -C $(LIBTOOL_DIR) clean
libtool-cross: uclibc $(LIBTOOL_DIR)/$(LIBTOOL_BINARY)
^ permalink raw reply [flat|nested] 4+ messages in thread
* [Buildroot] svn commit: trunk/buildroot/package/libtool
2009-01-04 6:04 nkukard at uclibc.org
@ 2009-01-04 6:04 ` Nigel Kukard
0 siblings, 0 replies; 4+ messages in thread
From: Nigel Kukard @ 2009-01-04 6:04 UTC (permalink / raw)
To: buildroot
nkukard at uclibc.org wrote:
> Author: nkukard
> Date: 2009-01-04 06:04:50 +0000 (Sun, 04 Jan 2009)
> New Revision: 24683
>
> Log:
> Use target ar & ranlib when generating static archives, the host tools were being used when libltdl.a was being generated
>
And remove setting CC them from the uninstall
-N
>
> Modified:
> trunk/buildroot/package/libtool/libtool.mk
>
>
> Changeset:
> Modified: trunk/buildroot/package/libtool/libtool.mk
> ===================================================================
> --- trunk/buildroot/package/libtool/libtool.mk 2009-01-04 06:02:30 UTC (rev 24682)
> +++ trunk/buildroot/package/libtool/libtool.mk 2009-01-04 06:04:50 UTC (rev 24683)
> @@ -56,7 +56,7 @@
> touch $@
>
> $(LIBTOOL_DIR)/$(LIBTOOL_BINARY): $(LIBTOOL_DIR)/.configured
> - $(MAKE) CC=$(TARGET_CC) -C $(LIBTOOL_DIR)
> + $(MAKE) CC=$(TARGET_CC) RANLIB=$(TARGET_RANLIB) AR=$(TARGET_AR) -C $(LIBTOOL_DIR)
> touch -c $@
>
> $(TARGET_DIR)/$(LIBTOOL_TARGET_BINARY): $(LIBTOOL_DIR)/$(LIBTOOL_BINARY)
> @@ -90,7 +90,7 @@
> libtool: uclibc $(TARGET_DIR)/$(LIBTOOL_TARGET_BINARY)
>
> libtool-clean:
> - -$(MAKE) DESTDIR=$(TARGET_DIR) CC=$(TARGET_CC) -C $(LIBTOOL_DIR) uninstall
> + -$(MAKE) DESTDIR=$(TARGET_DIR) -C $(LIBTOOL_DIR) uninstall
> -$(MAKE) -C $(LIBTOOL_DIR) clean
>
> libtool-cross: uclibc $(LIBTOOL_DIR)/$(LIBTOOL_BINARY)
>
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot
>
^ permalink raw reply [flat|nested] 4+ messages in thread
* [Buildroot] svn commit: trunk/buildroot/package/libtool
@ 2007-09-21 9:45 aldot at uclibc.org
0 siblings, 0 replies; 4+ messages in thread
From: aldot at uclibc.org @ 2007-09-21 9:45 UTC (permalink / raw)
To: buildroot
Author: aldot
Date: 2007-09-21 02:45:13 -0700 (Fri, 21 Sep 2007)
New Revision: 19925
Log:
- bump version
Modified:
trunk/buildroot/package/libtool/libtool.mk
Changeset:
Modified: trunk/buildroot/package/libtool/libtool.mk
===================================================================
--- trunk/buildroot/package/libtool/libtool.mk 2007-09-21 08:19:27 UTC (rev 19924)
+++ trunk/buildroot/package/libtool/libtool.mk 2007-09-21 09:45:13 UTC (rev 19925)
@@ -3,7 +3,7 @@
# libtool
#
#############################################################
-LIBTOOL_VERSION:=1.5.22
+LIBTOOL_VERSION:=1.5.24
LIBTOOL_SOURCE:=libtool-$(LIBTOOL_VERSION).tar.gz
LIBTOOL_SITE:=http://ftp.gnu.org/pub/gnu/libtool
LIBTOOL_CAT:=$(ZCAT)
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2009-01-04 6:04 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-09-22 8:11 [Buildroot] svn commit: trunk/buildroot/package/libtool jacmet at uclibc.org
-- strict thread matches above, loose matches on Subject: below --
2009-01-04 6:04 nkukard at uclibc.org
2009-01-04 6:04 ` Nigel Kukard
2007-09-21 9:45 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