diff options
author | Lars Müller <lmuelle@samba.org> | 2006-02-23 01:05:51 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 11:10:20 -0500 |
commit | 95faa772c6d2df2e633b411a3f0f5337ad78ceb4 (patch) | |
tree | f1926017413653d4cecc589a1b07fedf3c57030a | |
parent | ca0e155ef015adfaf6a9c38518e8d60adcc3fdf9 (diff) | |
download | samba-95faa772c6d2df2e633b411a3f0f5337ad78ceb4.tar.gz samba-95faa772c6d2df2e633b411a3f0f5337ad78ceb4.tar.bz2 samba-95faa772c6d2df2e633b411a3f0f5337ad78ceb4.zip |
r13643: Enable script debug output to get some more details why some hosts
return with !=0 after calling installmodules.sh AUTH_MODULES.
(This used to be commit 5a67b4f5be9960b24f5bb2ba0adcc25121c8a486)
-rwxr-xr-x | source3/script/installmodules.sh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/source3/script/installmodules.sh b/source3/script/installmodules.sh index 4ea8fde327..47794d1135 100755 --- a/source3/script/installmodules.sh +++ b/source3/script/installmodules.sh @@ -19,6 +19,8 @@ fi fi done +set -x + for p in $*; do p2=`basename $p` echo Installing $p as $DESTDIR/$LIBDIR/$p2 @@ -26,4 +28,6 @@ for p in $*; do chmod $INSTALLPERMS $DESTDIR/$LIBDIR/$p2 done +set +x + exit 0 |