diff options
author | Michael Krufky <mkrufky@linuxtv.org> | 2006-05-08 17:50:08 -0400 |
---|---|---|
committer | Michael Krufky <mkrufky@linuxtv.org> | 2006-05-08 17:50:08 -0400 |
commit | a538afc7e66765d307ffd0e6d15eace695f69188 (patch) | |
tree | 0e05af93e9d6ebd20f27d9d95e5bf1b76ff6c9e1 | |
parent | 1b0cb8ac7fbb1369e34b40e7cc05c4c948ae4ce1 (diff) | |
download | mediapointer-dvb-s2-a538afc7e66765d307ffd0e6d15eace695f69188.tar.gz mediapointer-dvb-s2-a538afc7e66765d307ffd0e6d15eace695f69188.tar.bz2 |
fix warning: extra tokens at end of #undef directive
From: Michael Krufky <mkrufky@linuxtv.org>
Signed-off-by: Michael Krufky <mkrufky@linuxtv.org>
-rw-r--r-- | v4l/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/v4l/Makefile b/v4l/Makefile index 3ba4603f3..b8eba1a44 100644 --- a/v4l/Makefile +++ b/v4l/Makefile @@ -196,7 +196,7 @@ config-compat.h:: .myconfig @echo >> config-compat.h @grep "CONFIG\_" .myconfig | grep -v "\:\= n" | \ sed s/"CONFIG\_"/"\#undef CONFIG\_"/1 | \ - sed s/"\:\= ."/""/1 >> config-compat.h >> config-compat.h + sed s/"\:\= .*"/""/1 >> config-compat.h >> config-compat.h @echo >> config-compat.h @grep "CONFIG\_" .myconfig | grep -v "\:\= n" | \ sed s/"CONFIG\_"/"\#define CONFIG\_"/1 | \ |