[oe-commits] Ross Burton : scripts: add lnr (link relative)

git at git.openembedded.org git at git.openembedded.org
Thu Mar 6 17:28:20 UTC 2014


Module: openembedded-core.git
Branch: master-next
Commit: d2a8e5148a581557f1f4f067982881722badb1cf
URL:    http://git.openembedded.org/?p=openembedded-core.git&a=commit;h=d2a8e5148a581557f1f4f067982881722badb1cf

Author: Ross Burton <ross.burton at intel.com>
Date:   Mon Mar  3 20:23:34 2014 +0000

scripts: add lnr (link relative)

lnr is a simple script to generate relative symlinks from absolute paths,
similar to "ln -r" but without requiring coreutils 8.16 (Ubuntu 12.04 and others
currently ship 8.13).

Signed-off-by: Ross Burton <ross.burton at intel.com>
Signed-off-by: Saul Wold <sgw at linux.intel.com>

---

 scripts/lnr | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/scripts/lnr b/scripts/lnr
new file mode 100755
index 0000000..9dacebe
--- /dev/null
+++ b/scripts/lnr
@@ -0,0 +1,21 @@
+#! /usr/bin/env python
+
+# Create a *relative* symlink, just like ln --relative does but without needing
+# coreutils 8.16.
+
+import sys, os
+
+if len(sys.argv) != 3:
+   print "$ lnr TARGET LINK_NAME"
+   sys.exit(1)
+
+target = sys.argv[1]
+linkname = sys.argv[2]
+
+if os.path.isabs(target):
+   if not os.path.isabs(linkname):
+      linkname = os.path.abspath(linkname)
+   start = os.path.dirname(linkname)
+   target = os.path.relpath(target, start)
+
+os.symlink(target, linkname)



More information about the Openembedded-commits mailing list