* [Buildroot] [PATCH] Makefile: also copy top level hidden files to the rootfs
@ 2008-08-09 19:01 Markus Heidelberg
0 siblings, 0 replies; only message in thread
From: Markus Heidelberg @ 2008-08-09 19:01 UTC (permalink / raw)
To: buildroot
I'm not sure about the filename pattern .[^.]*
Is it dependent on the shell, does this work with others than bash? Or should
there be another solution?
Makefile: also copy top level hidden files to the rootfs
Hidden files and directories that are located directly under / haven't been
copied to the target rootfs. But for example you may need the shell startup
file /.profile when your home directory is set to /
---
Makefile | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/Makefile b/Makefile
index 1f9e7f6..54462b6 100644
--- a/Makefile
+++ b/Makefile
@@ -319,7 +319,7 @@ $(PROJECT_BUILD_DIR)/.root:
mkdir -p $(TARGET_DIR)
if ! [ -d "$(TARGET_DIR)/bin" ]; then \
if [ -d "$(TARGET_SKELETON)" ]; then \
- cp -fa $(TARGET_SKELETON)/* $(TARGET_DIR)/; \
+ cp -fa $(TARGET_SKELETON)/* $(TARGET_SKELETON)/.[^.]* $(TARGET_DIR)/; \
fi; \
touch $(STAGING_DIR)/.fakeroot.00000; \
fi
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2008-08-09 19:01 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-08-09 19:01 [Buildroot] [PATCH] Makefile: also copy top level hidden files to the rootfs Markus Heidelberg
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox