# HG changeset patch # User eyck # Date 1010259301 0 # Node ID 587906e031fa62efb6118a2f14dc5cc9c2f46ba0 # Parent 3c6b061ec033f74410796cd78c53b00060ee7895 let people pass options to ./configure while building package. use DEB_BUILD_OPTIONS variable for that. diff -r 3c6b061ec033 -r 587906e031fa debian/README.debian --- a/debian/README.debian Sat Jan 05 19:29:52 2002 +0000 +++ b/debian/README.debian Sat Jan 05 19:35:01 2002 +0000 @@ -7,4 +7,10 @@ Recommended method is running "fakeroot debian/rules binary" in the top directory -Dariush Pietrzak Wed Aug 22 21:54:12 CEST 2001 + In case you would like to pass some parameters to ./configure, set variable + DEB_BUILD_OPTIONS like that: + + eyck@ghost$ DEB_BUILD_OPTIONS="--enable-streaming" fakeroot debian/rules binary + + +Dariush Pietrzak Sat Jan 5 20:28:23 CET 2002 diff -r 3c6b061ec033 -r 587906e031fa debian/rules --- a/debian/rules Sat Jan 05 19:29:52 2002 +0000 +++ b/debian/rules Sat Jan 05 19:35:01 2002 +0000 @@ -19,7 +19,7 @@ dh_testdir # Add here commands to configure the package. $(checkdir) - ./configure --prefix=/usr --enable-gui + ./configure --prefix=/usr --enable-gui $(DEB_BUILD_OPTIONS) touch configure-stamp