[OE-core] [PATCH 1/5] file: avoid to handle special character

Yue Tao Yue.Tao at windriver.com
Wed Nov 27 07:55:40 UTC 2013


From: Li Wang <li.wang at windriver.com>

avoid to handle special character '@' in filename and directory.

Signed-off-by: Li Wang <li.wang at windriver.com>
---
 .../file/file/avoid_handle_special_character.patch |   36 ++++++++++++++++++++
 meta/recipes-devtools/file/file_5.15.bb            |    1 +
 2 files changed, 37 insertions(+), 0 deletions(-)
 create mode 100644 meta/recipes-devtools/file/file/avoid_handle_special_character.patch

diff --git a/meta/recipes-devtools/file/file/avoid_handle_special_character.patch b/meta/recipes-devtools/file/file/avoid_handle_special_character.patch
new file mode 100644
index 0000000..4be4ad0
--- /dev/null
+++ b/meta/recipes-devtools/file/file/avoid_handle_special_character.patch
@@ -0,0 +1,36 @@
+--- a/doc/Makefile.am
++++ b/doc/Makefile.am
+@@ -12,21 +12,21 @@
+ 
+ file.1:	Makefile file.man
+ 	@rm -f $@
+-	sed -e s at __CSECTION__@1 at g \
+-	    -e s at __FSECTION__@${fsect}@g \
+-	    -e s at __VERSION__@${VERSION}@g \
+-	    -e s at __MAGIC__@${MAGIC}@g $(srcdir)/file.man > $@
++	sed -e s#__CSECTION__#1#g \
++	    -e s#__FSECTION__#${fsect}#g \
++	    -e s#__VERSION__#${VERSION}#g \
++	    -e s#__MAGIC__#${MAGIC}#g $(srcdir)/file.man > $@
+ 
+ magic.${fsect}: Makefile magic.man
+ 	@rm -f $@
+-	sed -e s at __CSECTION__@1 at g \
+-	    -e s at __FSECTION__@${fsect}@g \
+-	    -e s at __VERSION__@${VERSION}@g \
+-	    -e s at __MAGIC__@${MAGIC}@g $(srcdir)/magic.man > $@
++	sed -e s#__CSECTION__#1#g \
++	    -e s#__FSECTION__#${fsect}#g \
++	    -e s#__VERSION__#${VERSION}#g \
++	    -e s#__MAGIC__#${MAGIC}#g $(srcdir)/magic.man > $@
+ 
+ libmagic.3: Makefile libmagic.man
+ 	@rm -f $@
+-	sed -e s at __CSECTION__@1 at g \
+-	    -e s at __FSECTION__@${fsect}@g \
+-	    -e s at __VERSION__@${VERSION}@g \
+-	    -e s at __MAGIC__@${MAGIC}@g $(srcdir)/libmagic.man > $@
++	sed -e s#__CSECTION__#1#g \
++	    -e s#__FSECTION__#${fsect}#g \
++	    -e s#__VERSION__#${VERSION}#g \
++	    -e s#__MAGIC__#${MAGIC}#g $(srcdir)/libmagic.man > $@
diff --git a/meta/recipes-devtools/file/file_5.15.bb b/meta/recipes-devtools/file/file_5.15.bb
index aecbbe5..0697838 100644
--- a/meta/recipes-devtools/file/file_5.15.bb
+++ b/meta/recipes-devtools/file/file_5.15.bb
@@ -12,6 +12,7 @@ DEPENDS = "zlib file-native"
 DEPENDS_class-native = "zlib-native"
 
 SRC_URI = "ftp://ftp.astron.com/pub/file/file-${PV}.tar.gz \
+           file://avoid_handle_special_character.patch \
            file://dump \
            file://filesystems"
 
-- 
1.7.5.4




More information about the Openembedded-core mailing list