diff options
author | eb <eb@221aa14e-8319-0410-a670-987f0aec2ac5> | 2007-11-10 11:41:15 +0000 |
---|---|---|
committer | eb <eb@221aa14e-8319-0410-a670-987f0aec2ac5> | 2007-11-10 11:41:15 +0000 |
commit | d15e9b2a599c5919152362331189a7cafcb7c457 (patch) | |
tree | 33d7e3e2811f4ff9c16621033f557920bcd123ae /configure-cell-cross | |
parent | bf89a84441f33f17f29ce238d9920f87a4d3b540 (diff) |
pass args through
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@6856 221aa14e-8319-0410-a670-987f0aec2ac5
Diffstat (limited to 'configure-cell-cross')
-rwxr-xr-x | configure-cell-cross | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/configure-cell-cross b/configure-cell-cross index 48a7c6db4d..fce211f85b 100755 --- a/configure-cell-cross +++ b/configure-cell-cross @@ -14,6 +14,10 @@ do --prefix=*) prefix=${arg#--prefix=} ;; + --help) + $scriptdir/configure --help + exit + ;; esac done @@ -42,9 +46,9 @@ $scriptdir/configure \ LDFLAGS="-L${cell_root}/lib -L${cell_root}/usr/lib" \ PYTHON_CPPFLAGS=-I${cell_root}/usr/include/python${python_version} \ PKG_CONFIG_PATH=${cell_root}/usr/lib/pkgconfig:${cell_root}/usr/local/lib/pkgconfig \ - --host=powerpc64-unknown-linux-gnu \ - --prefix=$prefix \ - --with-pythondir=$prefix/lib/python${python_version}/site-packages + --host=powerpc64-unknown-linux-gnu \ + --with-pythondir=$prefix/lib/python${python_version}/site-packages \ + "$@" # Hack the libtool script so that it doesn't code an --rpath flag into anything |