diff options
author | sem <sem@FreeBSD.org> | 2006-02-08 21:07:06 +0000 |
---|---|---|
committer | sem <sem@FreeBSD.org> | 2006-02-08 21:07:06 +0000 |
commit | 8df0e04d8e0c2c3ef184c8da2ff7fa776bc6e486 (patch) | |
tree | 616d4592c40252976d4633eda4eb05a954e144b1 /devel | |
parent | c8a5d95b354b80eba971865292352b9aae67ea5b (diff) | |
download | FreeBSD-ports-8df0e04d8e0c2c3ef184c8da2ff7fa776bc6e486.zip FreeBSD-ports-8df0e04d8e0c2c3ef184c8da2ff7fa776bc6e486.tar.gz |
- Fix step to fix: don't touch files belong to omniORB port
Diffstat (limited to 'devel')
-rw-r--r-- | devel/py-omniorb/files/patch-omniidl_be-dir.mk | 19 | ||||
-rw-r--r-- | devel/py-omniorb/files/patch-python-dir.mk | 19 |
2 files changed, 38 insertions, 0 deletions
diff --git a/devel/py-omniorb/files/patch-omniidl_be-dir.mk b/devel/py-omniorb/files/patch-omniidl_be-dir.mk new file mode 100644 index 0000000..11ff45e --- /dev/null +++ b/devel/py-omniorb/files/patch-omniidl_be-dir.mk @@ -0,0 +1,19 @@ +--- omniidl_be/dir.mk.orig Wed Feb 8 23:42:52 2006 ++++ omniidl_be/dir.mk Wed Feb 8 23:43:03 2006 +@@ -13,8 +13,6 @@ + for file in $^; do \ + $(ExportFileToDir) \ + done; \ +- cd $(PYLIBDIR); \ +- $(PYTHON) -c "import compileall; compileall.compile_dir('.')"; \ + ) + + ifdef INSTALLTARGET +@@ -23,7 +21,5 @@ + for file in $^; do \ + $(ExportFileToDir) \ + done; \ +- cd $(INSTALLPYLIBDIR); \ +- $(PYTHON) -c "import compileall; compileall.compile_dir('.')"; \ + ) + endif diff --git a/devel/py-omniorb/files/patch-python-dir.mk b/devel/py-omniorb/files/patch-python-dir.mk new file mode 100644 index 0000000..a5f5557 --- /dev/null +++ b/devel/py-omniorb/files/patch-python-dir.mk @@ -0,0 +1,19 @@ +--- python/dir.mk.orig Wed Feb 8 23:42:23 2006 ++++ python/dir.mk Wed Feb 8 23:42:44 2006 +@@ -24,7 +24,7 @@ + $(ExportFileToDir) \ + done; \ + cd $(PYLIBDIR); \ +- $(PYTHON) -c "import compileall; compileall.compile_dir('.')"; \ ++ $(PYTHON) -c "import compileall; compileall.compile_dir('.',0)"; \ + ) + + ifdef INSTALLTARGET +@@ -34,6 +34,6 @@ + $(ExportFileToDir) \ + done; \ + cd $(INSTALLPYLIBDIR); \ +- $(PYTHON) -c "import compileall; compileall.compile_dir('.')"; \ ++ $(PYTHON) -c "import compileall; compileall.compile_dir('.',0)"; \ + ) + endif |