From 53f670ac06837e0517cffad747435e5d1677d3fa Mon Sep 17 00:00:00 2001 From: Thomas Petazzoni Date: Sat, 20 Feb 2010 17:13:55 +0100 Subject: ccache: remove cleanup of documentation The cleanup of documentation is handled in a global way, in the main Makefile. Signed-off-by: Thomas Petazzoni --- toolchain/ccache/ccache.mk | 3 --- 1 file changed, 3 deletions(-) (limited to 'toolchain') diff --git a/toolchain/ccache/ccache.mk b/toolchain/ccache/ccache.mk index c98937d37..8e414b27b 100644 --- a/toolchain/ccache/ccache.mk +++ b/toolchain/ccache/ccache.mk @@ -163,9 +163,6 @@ $(CCACHE_DIR2)/$(CCACHE_BINARY): $(CCACHE_DIR2)/.configured $(TARGET_DIR)/$(CCACHE_TARGET_BINARY): $(CCACHE_DIR2)/$(CCACHE_BINARY) $(MAKE) DESTDIR=$(TARGET_DIR) -C $(CCACHE_DIR2) install -ifneq ($(BR2_HAVE_MANPAGES),y) - rm -rf $(TARGET_DIR)/usr/man -endif # put a bunch of symlinks into /bin, since that is earlier # in the default PATH than /usr/bin where gcc lives (cd $(TARGET_DIR)/bin; \ -- cgit v1.2.3 From a47ce9d3df148cbfbd38355c80624fb5abc78a77 Mon Sep 17 00:00:00 2001 From: Thomas Petazzoni Date: Sat, 20 Feb 2010 19:31:39 +0100 Subject: dependencies: add gzip and bzip2 as base dependencies They are needed to uncompress the tarballs we download. bzip2, for instance, is not necessarly installed by default on basic Debian systems. Signed-off-by: Thomas Petazzoni --- toolchain/dependencies/dependencies.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'toolchain') diff --git a/toolchain/dependencies/dependencies.sh b/toolchain/dependencies/dependencies.sh index f5b26214d..d0190fd4d 100755 --- a/toolchain/dependencies/dependencies.sh +++ b/toolchain/dependencies/dependencies.sh @@ -122,7 +122,7 @@ if ! $SHELL --version 2>&1 | grep -q '^GNU bash'; then fi; # Check that a few mandatory programs are installed -for prog in awk bison flex msgfmt makeinfo patch ; do +for prog in awk bison flex msgfmt makeinfo patch gzip bzip2 ; do if ! which $prog > /dev/null ; then /bin/echo -e "\nYou must install '$prog' on your build machine"; if test $prog = "makeinfo" ; then -- cgit v1.2.3 From 496078a0a0530dad1206be6257f1bc91a70b645a Mon Sep 17 00:00:00 2001 From: Thomas Petazzoni Date: Sun, 21 Feb 2010 18:03:41 +0100 Subject: dependencies: add perl as a mandatory dependency Now that we might happen to build libxml-parser-perl and intltool, Perl becomes a mandatory dependency. This shouldn't be a problem since most distributions install Perl by default anyway. Signed-off-by: Thomas Petazzoni --- toolchain/dependencies/dependencies.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'toolchain') diff --git a/toolchain/dependencies/dependencies.sh b/toolchain/dependencies/dependencies.sh index d0190fd4d..146e08023 100755 --- a/toolchain/dependencies/dependencies.sh +++ b/toolchain/dependencies/dependencies.sh @@ -122,7 +122,7 @@ if ! $SHELL --version 2>&1 | grep -q '^GNU bash'; then fi; # Check that a few mandatory programs are installed -for prog in awk bison flex msgfmt makeinfo patch gzip bzip2 ; do +for prog in awk bison flex msgfmt makeinfo patch gzip bzip2 perl ; do if ! which $prog > /dev/null ; then /bin/echo -e "\nYou must install '$prog' on your build machine"; if test $prog = "makeinfo" ; then -- cgit v1.2.3 From 58a45bf66ba1787d9ac25c0fa8df4672bc705358 Mon Sep 17 00:00:00 2001 From: Thomas Petazzoni Date: Sun, 21 Feb 2010 20:50:46 +0100 Subject: uclibc: do not allow the selection of NPTL if snapshot is not selected In uClibc, NPTL support does not exist in the 0.9.30 branch, that we are using in Buildroot. It is only available in the uClibc daily snapshot, extracted from uClibc master branch. Signed-off-by: Thomas Petazzoni --- toolchain/Config.in.2 | 1 + 1 file changed, 1 insertion(+) (limited to 'toolchain') diff --git a/toolchain/Config.in.2 b/toolchain/Config.in.2 index 6317ff4fb..234e31f3b 100644 --- a/toolchain/Config.in.2 +++ b/toolchain/Config.in.2 @@ -120,6 +120,7 @@ choice config BR2_PTHREADS_NATIVE bool "Native POSIX Threading (NPTL)" + depends on BR2_UCLIBC_VERSION_SNAPSHOT endchoice config BR2_PROGRAM_INVOCATION -- cgit v1.2.3