[Lunar-commits] <moonbase> binutils: Added $OPTS to BUILD file

Duncan Gibson engelsman at lunar-linux.org
Sat Nov 14 21:50:18 CET 2009


commit 49ca0b8c1dabfaa1da77da344fc9296437865e93
Author: giorgos chatzipavlis <lazyape at gmail.com>
Date:   Sat Nov 14 21:50:18 2009 +0100

    binutils: Added $OPTS to BUILD file
    
    Added $OPTS to BUILD file. Without it the user can not add extra options
    from the command line i.e lin binutils --opts ' --enable-shared=yes'
    won't get enabled in the build process.
---
 devel/binutils/BUILD         |    3 ++-
 devel/binutils/BUILD.sparc64 |    3 ++-
 devel/binutils/BUILD.x86_64  |    3 ++-
 3 files changed, 6 insertions(+), 3 deletions(-)

diff --git a/devel/binutils/BUILD b/devel/binutils/BUILD
index 3140e0e..e005650 100644
--- a/devel/binutils/BUILD
+++ b/devel/binutils/BUILD
@@ -1,7 +1,8 @@
 (
 
   ./configure  --host=$BUILD  \
-               --prefix=/usr  &&
+               --prefix=/usr  \
+               $OPTS          &&
 
   make tooldir=/usr           &&
   prepare_install             &&
diff --git a/devel/binutils/BUILD.sparc64 b/devel/binutils/BUILD.sparc64
index c5cabf7..958e04c 100644
--- a/devel/binutils/BUILD.sparc64
+++ b/devel/binutils/BUILD.sparc64
@@ -6,7 +6,8 @@
 
   ./configure  --host=$BUILD         \
                --target=sparc-linux  \
-               --prefix=/usr        &&
+               --prefix=/usr         \
+               $OPTS                &&
 
   make tooldir=/usr          &&
   prepare_install            &&
diff --git a/devel/binutils/BUILD.x86_64 b/devel/binutils/BUILD.x86_64
index 23a6244..4514fb9 100644
--- a/devel/binutils/BUILD.x86_64
+++ b/devel/binutils/BUILD.x86_64
@@ -1,6 +1,7 @@
 (
 
-  ./configure  --prefix=/usr  &&
+  ./configure  --prefix=/usr  \
+               $OPTS          &&
 
   make tooldir=/usr           &&
   prepare_install             &&


More information about the Lunar-commits mailing list