| Submitter | chase maupin |
|---|---|
| Date | Dec. 16, 2010, 9:43 p.m. |
| Message ID | <1292535782-19714-1-git-send-email-Chase.Maupin@ti.com> |
| Download | mbox | patch |
| Permalink | /patch/81/ |
| State | Superseded |
| Headers | show |
Comments
Please ignore this patch for now. I forgot the case where there are no hidden files and I need to update to handle this. > -----Original Message----- > From: Chase Maupin [mailto:chasemaupin03@gmail.com] > Sent: Thursday, December 16, 2010 3:43 PM > To: openembedded-devel@lists.openembedded.org > Cc: Maupin, Chase > Subject: [PATCH] sourceipk: copy over hidden files and dirs > > * Copy hidden files and directories such as eclipse > project files. Currently these files are not copied > (particularly for the top-level directory) which makes > applications with eclipse project files not usable with eclipse. > > Signed-off-by: Chase Maupin <Chase.Maupin@ti.com> > --- > classes/sourceipk.bbclass | 6 ++++++ > 1 files changed, 6 insertions(+), 0 deletions(-) > > diff --git a/classes/sourceipk.bbclass b/classes/sourceipk.bbclass > index 97068de..213bff9 100644 > --- a/classes/sourceipk.bbclass > +++ b/classes/sourceipk.bbclass > @@ -106,6 +106,12 @@ sourceipk_do_create_srcipk() { > # Copy sources for packaging > mkdir -p $tmp_dir/${SRCIPK_INSTALL_DIR} > cp -RLf ${S}/* $tmp_dir/${SRCIPK_INSTALL_DIR}/ > + # Copy any hidden files in the source directory such as > + # eclipse project files. Use a regex to avoid trying to > + # copy the . and .. directories. This is only required for > + # the top-level directory as the hidden files will be copied > + # for subdiretories. > + cp -r ${S}/.[a-zA-Z0-9]* $tmp_dir/${SRCIPK_INSTALL_DIR}/ > > if [ ${SRCIPK_INCLUDE_EXTRAFILES} != "0" ] > then > -- > 1.7.0.4
Patch
diff --git a/classes/sourceipk.bbclass b/classes/sourceipk.bbclass index 97068de..213bff9 100644 --- a/classes/sourceipk.bbclass +++ b/classes/sourceipk.bbclass @@ -106,6 +106,12 @@ sourceipk_do_create_srcipk() { # Copy sources for packaging mkdir -p $tmp_dir/${SRCIPK_INSTALL_DIR} cp -RLf ${S}/* $tmp_dir/${SRCIPK_INSTALL_DIR}/ + # Copy any hidden files in the source directory such as + # eclipse project files. Use a regex to avoid trying to + # copy the . and .. directories. This is only required for + # the top-level directory as the hidden files will be copied + # for subdiretories. + cp -r ${S}/.[a-zA-Z0-9]* $tmp_dir/${SRCIPK_INSTALL_DIR}/ if [ ${SRCIPK_INCLUDE_EXTRAFILES} != "0" ] then
* Copy hidden files and directories such as eclipse project files. Currently these files are not copied (particularly for the top-level directory) which makes applications with eclipse project files not usable with eclipse. Signed-off-by: Chase Maupin <Chase.Maupin@ti.com> --- classes/sourceipk.bbclass | 6 ++++++ 1 files changed, 6 insertions(+), 0 deletions(-)