bring in pylibdir.py helper
authorpavlov <pavlov@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Mon, 30 Jul 2007 14:37:09 +0000 (14:37 +0000)
committerpavlov <pavlov@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Mon, 30 Jul 2007 14:37:09 +0000 (14:37 +0000)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@8226 3c298f89-4303-0410-b956-a3cf2f4a3e73

scripts/pylibdir.py [new file with mode: 0755]

diff --git a/scripts/pylibdir.py b/scripts/pylibdir.py
new file mode 100755 (executable)
index 0000000..05b5afb
--- /dev/null
@@ -0,0 +1,5 @@
+# Note #! intentionally left out.  This should be called with the version of 
+# python you care about.
+
+import sys
+print ("/usr/lib/python%s.%s/site-packages" % (sys.version_info[0], sys.version_info[1],))