diff options
author | Michael Krufky <mkrufky@linuxtv.org> | 2006-02-17 00:55:52 -0500 |
---|---|---|
committer | Michael Krufky <mkrufky@linuxtv.org> | 2006-02-17 00:55:52 -0500 |
commit | 5ea064de62f132e1a75140226ec2b1e5cba1e45e (patch) | |
tree | b2afc6fc63cf2c6eb95e5f8b9e3a59e8b07f7848 | |
parent | c5afcf940212386e9ddb07960b1922b1b110571f (diff) | |
download | mediapointer-dvb-s2-5ea064de62f132e1a75140226ec2b1e5cba1e45e.tar.gz mediapointer-dvb-s2-5ea064de62f132e1a75140226ec2b1e5cba1e45e.tar.bz2 |
sed -i 's/c,h/ch/1' Makefile
From: Michael Krufky <mkrufky@linuxtv.org>
The symlink commands in the Makefile used to look like:
@find ../linux/drivers/media -name '*.[c,h]' -type f -exec ln -sf '{}' . \;
the ',' should not be there. The correct command is:
@find ../linux/drivers/media -name '*.[ch]' -type f -exec ln -sf '{}' . \;
Signed-off-by: Michael Krufky <mkrufky@linuxtv.org>
-rw-r--r-- | v4l/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/v4l/Makefile b/v4l/Makefile index c3bfdfaf5..1cbe00cbb 100644 --- a/v4l/Makefile +++ b/v4l/Makefile @@ -345,7 +345,7 @@ default:: links .version pvrusb2:: @echo creating pvrusb2 symbolic links... - @find ../v4l_experimental/pvrusb2 -name '*.[c,h]' -type f -exec ln -sf '{}' . \; + @find ../v4l_experimental/pvrusb2 -name '*.[ch]' -type f -exec ln -sf '{}' . \; @echo 'm' > .pvrusb2-merge ivtv-checkout:: @@ -360,8 +360,8 @@ ivtv-update ivtv-up:: ivtv-checkout ivtv-links:: ivtv-checkout @echo creating ivtv symbolic links... - @find ivtv/driver -name '*.[c,h]' -type f -exec ln -sf '{}' . \; - @find ivtv/i2c-drivers -name '*.[c,h]' -type f -exec ln -sf '{}' . \; + @find ivtv/driver -name '*.[ch]' -type f -exec ln -sf '{}' . \; + @find ivtv/i2c-drivers -name '*.[ch]' -type f -exec ln -sf '{}' . \; ivtv:: ivtv-links @echo '#define IVTV_DRIVER_VERSION_COMMENT "(v4l-dvb + ivtv virtual merge)"' > ivtv-svnversion.h @@ -369,8 +369,8 @@ ivtv:: ivtv-links links:: @echo creating symbolic links... - @find ../linux/drivers/media -name '*.[c,h]' -type f -exec ln -sf '{}' . \; - @find ../linux/sound -name '*.[c,h]' -type f -exec ln -sf '{}' . \; + @find ../linux/drivers/media -name '*.[ch]' -type f -exec ln -sf '{}' . \; + @find ../linux/sound -name '*.[ch]' -type f -exec ln -sf '{}' . \; # @find ../linux/include -name '*.[h]' -type f -exec ln -sf '{}' . \; |