configure in ext4-new-features calls configure in ffsb without arguments. It always configures for host machine environment even if we pass arguments to configure in ext4-new-features.
This patch passes all the arguments to configure in ffsb so that ffsb can also be cross-compiled for target machine as well. Signed-off-by: Honggyu Kim <[email protected]> --- testcases/kernel/fs/ext4-new-features/configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testcases/kernel/fs/ext4-new-features/configure b/testcases/kernel/fs/ext4-new-features/configure index 12849e5..15c4f0c 100755 --- a/testcases/kernel/fs/ext4-new-features/configure +++ b/testcases/kernel/fs/ext4-new-features/configure @@ -2,7 +2,7 @@ echo "Run the ffsb's configure" cd ./ffsb-6.0-rc2 -./configure +./configure $* cd .. EXT4_DEV= -- 1.7.9.5 ------------------------------------------------------------------------------ November Webinars for C, C++, Fortran Developers Accelerate application performance with scalable programming models. Explore techniques for threading, error checking, porting, and tuning. Get the most from the latest Intel processors and coprocessors. See abstracts and register http://pubads.g.doubleclick.net/gampad/clk?id=60136231&iu=/4140/ostg.clktrk _______________________________________________ Ltp-list mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/ltp-list
