summaryrefslogtreecommitdiff
path: root/v4l
diff options
context:
space:
mode:
Diffstat (limited to 'v4l')
-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 ..