[Lunar-commits] <moonbase-core> binutils: fix werror problem & cleanup

v4hn me at v4hn.de
Mon Apr 8 10:25:20 CEST 2013


commit 3c6e200be311e1866751ab166995f63081efd0ce
Author: v4hn <me at v4hn.de>
Date: Sat, 06 Apr 2013 12:45:20 -0700
URL: https://github.com/lunar-linux/moonbase-core/commit/3c6e200be311e1866751ab166995f63081efd0ce

binutils: fix werror problem & cleanup

BUILD and BUILD.x86_64 are identical, so we
don't need the 64bit BUILD.
---
  devel/binutils/BUILD        | +15/-16   
  devel/binutils/BUILD.x86_64 | +0/-18    
  2 files changed, 15 insertions(+), 34 deletions(-)

--- a/devel/binutils/BUILD
+++ b/devel/binutils/BUILD
@@ -1,16 +1,15 @@
-(
-
-  ./configure  --prefix=/usr  \
-               $OPTS         &&
-
-  make tooldir=/usr          &&
-  prepare_install            &&
-  make tooldir=/usr install  &&
-  make tooldir=/usr install-info  &&
-  mkdir -p $DOCUMENT_DIRECTORY/binutils  &&
-  cp -p binutils/NEWS binutils/ChangeLog $DOCUMENT_DIRECTORY/binutils &&
-
-  # For some reason installwatch fail to pick up the ld hardlink, touching it solves that issue
-  [ -e /usr/bin/ld ] && touch /usr/bin/ld
-
-) > $C_FIFO 2>&1
+./configure  --prefix=/usr    \
+             --disable-werror \
+             $OPTS         &&
+
+make tooldir=/usr          &&
+prepare_install            &&
+make tooldir=/usr install  &&
+make tooldir=/usr install-info  &&
+mkdir -p $DOCUMENT_DIRECTORY/binutils  &&
+cp -p binutils/NEWS binutils/ChangeLog $DOCUMENT_DIRECTORY/binutils &&
+
+# For some reason installwatch fail to pick up the ld hardlink, touching it solves that issue
+if [ -e /usr/bin/ld ]; then
+  touch /usr/bin/ld
+fi
--- a/devel/binutils/BUILD.x86_64
+++ /dev/null
@@ -1,18 +0,0 @@
-(
-
-  ./configure  --prefix=/usr  \
-               $OPTS          &&
-
-  make tooldir=/usr           &&
-  prepare_install             &&
-  make tooldir=/usr install   &&
-  make tooldir=/usr install-info  &&
-  mkdir -p $DOCUMENT_DIRECTORY/binutils  &&
-  cp -p binutils/NEWS binutils/ChangeLog $DOCUMENT_DIRECTORY/binutils &&
-
-  # For some reason installwatch fail to pick up the ld hardlink, touching it solves that issue
-  if [ -e /usr/bin/ld ]; then 
-    touch /usr/bin/ld
-  fi
-
-) > $C_FIFO 2>&1




More information about the Lunar-commits mailing list