From 10e0641e3466ba765174a5036816f6ccef11922f Mon Sep 17 00:00:00 2001 From: Björn Jacke Date: Fri, 7 May 2010 13:38:00 +0200 Subject: idl: fix Unix builds by replacing bashism test -nt is not portable - tridge, please check! --- source3/script/build_idl.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/script/build_idl.sh') diff --git a/source3/script/build_idl.sh b/source3/script/build_idl.sh index 72d44add61..2a73755f0a 100755 --- a/source3/script/build_idl.sh +++ b/source3/script/build_idl.sh @@ -25,7 +25,7 @@ for f in ${IDL_FILES}; do list="$list $f" break } - [ $f -nt $PIDL_OUTPUTDIR/$o ] && { + test "`find $f -newer $PIDL_OUTPUTDIR/$o`" = "" && { list="$list $f" break } -- cgit