All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCHv2] sourceipk: copy over hidden files and dirs
@ 2010-12-16 22:56 Chase Maupin
  2010-12-20  3:16 ` Khem Raj
  0 siblings, 1 reply; 2+ messages in thread
From: Chase Maupin @ 2010-12-16 22:56 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Chase Maupin

* Copy hidden files and directories such as eclipse
  project files.  Currently these files are not copied
  for the top-level directory which makes applications with
  eclipse project files not usable with eclipse.
* Only need to copy hidden files for the top-level directory
  since subdirectories do not experience this problem

Signed-off-by: Chase Maupin <Chase.Maupin@ti.com>
---
updated in version 2:
    * Only copy hidden files in the top-level directory
    * Handle the case where there are no hidden files
---
 classes/sourceipk.bbclass |   10 ++++++++++
 1 files changed, 10 insertions(+), 0 deletions(-)

diff --git a/classes/sourceipk.bbclass b/classes/sourceipk.bbclass
index 97068de..17a7cdd 100644
--- a/classes/sourceipk.bbclass
+++ b/classes/sourceipk.bbclass
@@ -106,6 +106,16 @@ 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.
+        hidden_files=`find ${S} -maxdepth 1 -name ".*"`
+        for f in $hidden_files
+        do
+            cp -rf $f $tmp_dir/${SRCIPK_INSTALL_DIR}/
+        done
 
         if [ ${SRCIPK_INCLUDE_EXTRAFILES} != "0" ]
         then
-- 
1.7.0.4




^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCHv2] sourceipk: copy over hidden files and dirs
  2010-12-16 22:56 [PATCHv2] sourceipk: copy over hidden files and dirs Chase Maupin
@ 2010-12-20  3:16 ` Khem Raj
  0 siblings, 0 replies; 2+ messages in thread
From: Khem Raj @ 2010-12-20  3:16 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Chase Maupin

On (16/12/10 16:56), Chase Maupin wrote:
> * Copy hidden files and directories such as eclipse
>   project files.  Currently these files are not copied
>   for the top-level directory which makes applications with
>   eclipse project files not usable with eclipse.
> * Only need to copy hidden files for the top-level directory
>   since subdirectories do not experience this problem
> 
> Signed-off-by: Chase Maupin <Chase.Maupin@ti.com>

Acked-by: Khem Raj <raj.khem@gmail.com>


> ---
> updated in version 2:
>     * Only copy hidden files in the top-level directory
>     * Handle the case where there are no hidden files
> ---
>  classes/sourceipk.bbclass |   10 ++++++++++
>  1 files changed, 10 insertions(+), 0 deletions(-)
> 
> diff --git a/classes/sourceipk.bbclass b/classes/sourceipk.bbclass
> index 97068de..17a7cdd 100644
> --- a/classes/sourceipk.bbclass
> +++ b/classes/sourceipk.bbclass
> @@ -106,6 +106,16 @@ 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.
> +        hidden_files=`find ${S} -maxdepth 1 -name ".*"`
> +        for f in $hidden_files
> +        do
> +            cp -rf $f $tmp_dir/${SRCIPK_INSTALL_DIR}/
> +        done
>  
>          if [ ${SRCIPK_INCLUDE_EXTRAFILES} != "0" ]
>          then
> -- 
> 1.7.0.4
> 
> 
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel



^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2010-12-20  3:16 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-12-16 22:56 [PATCHv2] sourceipk: copy over hidden files and dirs Chase Maupin
2010-12-20  3:16 ` Khem Raj

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.