[oe-commits] Koen Kooi : stage-manager: change cp -d to cp -p, add hacky check for BSD mktemp

git version control git at git.openembedded.org
Fri Oct 22 02:41:02 UTC 2010


Module: openembedded.git
Branch: darwin
Commit: c68d90642162f4933cc5b9baee3ea51674f6f2e3
URL:    http://gitweb.openembedded.net/?p=openembedded.git&a=commit;h=c68d90642162f4933cc5b9baee3ea51674f6f2e3

Author: Koen Kooi <koen at openembedded.org>
Date:   Thu Nov 13 14:23:03 2008 +0100

stage-manager: change cp -d to cp -p, add hacky check for BSD mktemp

---

 recipes/stage-manager/files/stage-manager          |    2 +-
 recipes/stage-manager/files/stage-manager-ipkg     |    8 +++++++-
 recipes/stage-manager/stagemanager-native_0.0.1.bb |    2 +-
 3 files changed, 9 insertions(+), 3 deletions(-)

diff --git a/recipes/stage-manager/files/stage-manager b/recipes/stage-manager/files/stage-manager
index 536d1af..0c01a18 100755
--- a/recipes/stage-manager/files/stage-manager
+++ b/recipes/stage-manager/files/stage-manager
@@ -91,7 +91,7 @@ if __name__ == "__main__":
         if options.copydir:
             copypath = os.path.join(options.copydir, path.replace(options.parentdir, '', 1))
             mkdirhier(os.path.split(copypath)[0])
-            os.system("cp -dp " + path + " " + copypath)
+            os.system("cp -Pp " + path + " " + copypath)
 
     def copydir(path, fstamp):
         if options.copydir:
diff --git a/recipes/stage-manager/files/stage-manager-ipkg b/recipes/stage-manager/files/stage-manager-ipkg
index 07005e3..53c172e 100755
--- a/recipes/stage-manager/files/stage-manager-ipkg
+++ b/recipes/stage-manager/files/stage-manager-ipkg
@@ -109,7 +109,13 @@ Valid destinations are directories or one of the dest names from $IPKG_CONF:" >&
 	IPKG_DIR_PREFIX=usr/lib/ipkg
 	IPKG_LISTS_DIR=$IPKG_OFFLINE_ROOT/$IPKG_DIR_PREFIX/lists
 	IPKG_PENDING_DIR=$IPKG_OFFLINE_ROOT/$IPKG_DIR_PREFIX/pending
-	IPKG_TMP=`mktemp -d`
+
+	# test for bsd mktemp and pass -t <prefix> when needed
+	if (mktemp -V) ; then
+		IPKG_TMP=`mktemp -d`
+	else
+		IPKG_TMP=`mktemp -d -t ipkg`
+	fi
 
 	if [ ! -d "$IPKG_TMP" ]; then
 		echo "Error, could not create a temp directory"
diff --git a/recipes/stage-manager/stagemanager-native_0.0.1.bb b/recipes/stage-manager/stagemanager-native_0.0.1.bb
index 9eeac4b..b54c38d 100644
--- a/recipes/stage-manager/stagemanager-native_0.0.1.bb
+++ b/recipes/stage-manager/stagemanager-native_0.0.1.bb
@@ -1,5 +1,5 @@
 DESCRIPTION = "Helper script for packaged-staging.bbclass"
-PR = "r13"
+PR = "r14"
 
 SRC_URI = "file://stage-manager \
            file://stage-manager-ipkg \





More information about the Openembedded-commits mailing list