diff options
author | Björn Jacke <bj@sernet.de> | 2012-06-14 19:58:00 +0200 |
---|---|---|
committer | Bjoern Jacke <bj@sernet.de> | 2012-06-14 23:57:40 +0200 |
commit | ec609443041dfb86151d510d8ecd7bc935d7bb00 (patch) | |
tree | e26be1966f84a40f5583a2edcecfd64b2fb327b7 /librpc | |
parent | 3f110e50bfdbaf6958c12098e06ef599341d7e3b (diff) | |
download | samba-ec609443041dfb86151d510d8ecd7bc935d7bb00.tar.gz |
make librpc/build_idl.sh more portable
Autobuild-User(master): Björn Jacke <bj@sernet.de>
Autobuild-Date(master): Thu Jun 14 23:57:40 CEST 2012 on sn-devel-104
Diffstat (limited to 'librpc')
-rwxr-xr-x | librpc/build_idl.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/librpc/build_idl.sh b/librpc/build_idl.sh index 35acd1f24e2..f5901db7e60 100755 --- a/librpc/build_idl.sh +++ b/librpc/build_idl.sh @@ -28,7 +28,8 @@ fi ## Find newer files rather than rebuild all of them. Also handle the case ## where the pidl compiler itself is newer. ## -PIDL_NEWEST=$(ls -rt $(find $PIDL_DIR -type f) | tail -n -1) +PIDL_NEWEST=`find $PIDL_DIR -type f -print | xargs ls -rt | tail -1` +echo "jfyi: PIDL_NEWEST is $PIDL_NEWEST" list="" for f in ${IDL_FILES}; do |