[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

./packages/openofficeorg/3.2/unstable r1918: fix python-uno install for 2.6. $(shell is bad here



------------------------------------------------------------
revno: 1918
committer: Rene Engelhard <rene@debian.org>
branch nick: unstable
timestamp: Wed 2010-04-07 00:24:06 +0200
message:
  fix python-uno install for 2.6. $(shell is bad here
modified:
  changelog
  rules
=== modified file 'changelog'
--- a/changelog	2010-04-06 22:19:12 +0000
+++ b/changelog	2010-04-06 22:24:06 +0000
@@ -14,10 +14,11 @@
     - re-enable arch-dep extensions for m68k
     - fix rule for replacing the old -in packages to not add it in
       uppercase (closes: #576721)
+    - fix python-uno install for 2.6. $(shell is bad here
   * debian/rules, debian/control*in: remove %OOO_ARCH_DEP_EXTENSIONS_ARCHS%
     again
 
- -- Rene Engelhard <rene@debian.org>  Tue, 06 Apr 2010 23:46:25 +0200
+ -- Rene Engelhard <rene@debian.org>  Wed, 07 Apr 2010 00:22:15 +0200
 
 openoffice.org (1:3.2.0-5) unstable; urgency=low
 

=== modified file 'rules'
--- a/rules	2010-04-06 20:27:08 +0000
+++ b/rules	2010-04-06 22:24:06 +0000
@@ -2601,7 +2601,7 @@
 ifeq "$(BUILD_PYUNO)" "y"
 	# PyUNO packaging
 	for v in `pyversions -sv`; do \
-		PYTHON_SITE=$(shell python$$v -c 'from distutils import sysconfig; print(sysconfig.get_python_lib())'); \
+		PYTHON_SITE=`python$$v -c 'from distutils import sysconfig; print(sysconfig.get_python_lib())')`; \
 		install -d debian/python-uno/$$PYTHON_SITE; \
 		install -m644 debian/python-uno/$(OODIR)/program/uno.py debian/python-uno/$$PYTHON_SITE; \
 		install -m464 debian/python-uno/$(OODIR)/program/unohelper.py debian/python-uno/$$PYTHON_SITE; \


Reply to: