Reviewed by mslee
git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@664914
13f79535-47bb-0310-9956-
ffa450edef68
#!/bin/sh
-subdirs="compiler/py lib/cpp lib/php"
+subdirs="compiler/py lib/cpp lib/php lib/py"
rm -rf \
AUTHORS \
AC_CONFIG_FILES([Makefile])
-AC_CONFIG_SUBDIRS([compiler/py lib/cpp lib/php])
+AC_CONFIG_SUBDIRS([compiler/py lib/cpp lib/php lib/py])
AC_OUTPUT
--- /dev/null
+install-exec-hook:
+ $(PYTHON) setup.py install
--- /dev/null
+#!/bin/sh
+
+rm -rf \
+AUTHORS \
+COPYING \
+ChangeLog \
+INSTALL \
+Makefile \
+Makefile.in \
+Makefile.orig \
+NEWS \
+README \
+aclocal.m4 \
+autom4te.cache \
+autoscan.log \
+config.guess \
+config.h \
+config.hin \
+config.log \
+config.status \
+config.sub \
+configure \
+configure.scan \
+depcomp \
+.deps \
+install-sh \
+.libs \
+libtool \
+ltmain.sh \
+Makefile.in \
+missing
+
+aclocal
+touch NEWS README AUTHORS ChangeLog
+autoconf
+automake -ac
--- /dev/null
+AC_PREREQ(2.59)
+
+AC_INIT([thriftpy], [1.0])
+
+AC_CONFIG_AUX_DIR([.])
+
+AM_INIT_AUTOMAKE
+
+AM_PATH_PYTHON(2.4,, :)
+
+AC_CONFIG_FILES([Makefile])
+
+AC_OUTPUT