The Financial Information Exchange (FIX) Protocol is a message standard developed to facilitate the electronic exchange of information related to securities transactions. It is intended for use between trading partners wishing to automate communications. QuickFIX is a free and open source implementation of the FIX protocol. WWW: http://www.fixprotocol.org/ WWW: http://www.quickfixengine.org/ PR: 193504 Submitted by: Mikhail Tsatsenko <m.tsatsenko@gmail.com> Reviewed by: marino, pawel, w.schwarzenfeld@utanet.at
12 lines
446 B
Plaintext
12 lines
446 B
Plaintext
--- src/python/Makefile.in.orig 2014-09-15 06:24:20 UTC
|
|
+++ src/python/Makefile.in
|
|
@@ -596,7 +596,7 @@ uninstall-am: uninstall-pythonDATA uninstall-pythonLTL
|
|
|
|
all-local:
|
|
mkdir -p $(local_python_lib)
|
|
- ln -sf $(local_python_src)/.libs/_quickfix* $(local_python_lib)
|
|
+ find $(local_python_src)/.libs/_quickfix.* -exec ln -s {} $(local_python_lib)/{} \;
|
|
ln -sf $(local_python_src)/*.py $(local_python_lib)
|
|
ln -sf $(top_builddir)/spec spec
|
|
|