diff options
author | 2008-11-01 22:40:32 +0000 | |
---|---|---|
committer | 2008-11-01 22:40:32 +0000 | |
commit | 3a1cf68e386af9d8193e3e1eed2cb04d9d7f59ae (patch) | |
tree | ace8f4f3b636945bfba663387d65ec88e3e055e2 /net-misc/omniORB/files | |
parent | Whitespace. (diff) | |
download | gentoo-2-3a1cf68e386af9d8193e3e1eed2cb04d9d7f59ae.tar.gz gentoo-2-3a1cf68e386af9d8193e3e1eed2cb04d9d7f59ae.tar.bz2 gentoo-2-3a1cf68e386af9d8193e3e1eed2cb04d9d7f59ae.zip |
Version bump. Should fix CFLAGS handling - bug #241076.
(Portage version: 2.2_rc12/cvs/Linux 2.6.27-gentoo-r1-perfctr x86_64)
Diffstat (limited to 'net-misc/omniORB/files')
-rw-r--r-- | net-misc/omniORB/files/mkomnistubs.py | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/net-misc/omniORB/files/mkomnistubs.py b/net-misc/omniORB/files/mkomnistubs.py deleted file mode 100644 index 47c3e8386486..000000000000 --- a/net-misc/omniORB/files/mkomnistubs.py +++ /dev/null @@ -1,24 +0,0 @@ -#!/usr/bin/env python - - -import os - - -idlfiles = ["TimeBase", "CosTime", "CosEventComm", "CosEventChannelAdmin", -"CosTypedEventComm", "CosTypedEventChannelAdmin", "CosTimerEvent", -"CosNotification", "CosNotifyComm", "CosNotifyFilter", -"CosNotifyChannelAdmin", "CosTypedNotifyComm", "CosTypedNotifyChannelAdmin", -"AttNotifyChannelAdmin"] - - -# d is the top-level idl directory from an omniORB release -d = "/usr/idl" - - -for x in idlfiles: - y = x + ".idl" - print x - cmd = "omniidl -bpython -C /usr/lib/python2.1/site-packages/ -I%s -I%s/COS -DNOLONGLONG %s/COS/%s" % (d, d, d, y) - print cmd - os.system(cmd) - |