summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Krufky <mkrufky@linuxtv.org>2006-03-18 14:44:06 -0500
committerMichael Krufky <mkrufky@linuxtv.org>2006-03-18 14:44:06 -0500
commit883abfc44e00cd092b843f4831a229f54eb20844 (patch)
tree4674fa946bde69f73eb4bbe28b3afd6a374af98c
parent815e19f2f48c5a8e920be81523aca51206d7750b (diff)
downloadmediapointer-dvb-s2-883abfc44e00cd092b843f4831a229f54eb20844.tar.gz
mediapointer-dvb-s2-883abfc44e00cd092b843f4831a229f54eb20844.tar.bz2
make 'make kernel-links' less verbose
From: Michael Krufky <mkrufky@linuxtv.org> Signed-off-by: Michael Krufky <mkrufky@linuxtv.org>
-rwxr-xr-xv4l/scripts/makelinks.sh10
1 files changed, 5 insertions, 5 deletions
diff --git a/v4l/scripts/makelinks.sh b/v4l/scripts/makelinks.sh
index 981df1af8..a66989771 100755
--- a/v4l/scripts/makelinks.sh
+++ b/v4l/scripts/makelinks.sh
@@ -26,23 +26,23 @@ for x in `find include -type d | grep -v CVS` ; do
done
for x in `find Documentation -type f | grep -v CVS | grep -v .cvsignore` ; do
- ln -v -f -s $PWD/$x $1/$x
+ ln -f -s $PWD/$x $1/$x
done
for x in `find drivers -type f | grep -v CVS | grep -v .cvsignore` ; do
- ln -v -f -s $PWD/$x $1/$x
+ ln -f -s $PWD/$x $1/$x
done
for x in `find include -type f | grep -v CVS | grep -v .cvsignore` ; do
- ln -v -f -s $PWD/$x $1/$x
+ ln -f -s $PWD/$x $1/$x
done
for x in `find include -type d | grep -v CVS` ; do
- ln -v -f -s $PWD/../v4l/compat.h $1/$x/compat.h
+ ln -f -s $PWD/../v4l/compat.h $1/$x/compat.h
done
for x in `find drivers/media -type d | grep -v CVS` ; do
- ln -v -f -s $PWD/../v4l/compat.h $1/$x/compat.h
+ ln -f -s $PWD/../v4l/compat.h $1/$x/compat.h
done
cd ..