From 7eef27acfde16cd42ef4e12132d9c380d875b64d Mon Sep 17 00:00:00 2001 From: Axel Kohlmeyer Date: Thu, 23 Feb 2012 20:19:04 -0500 Subject: [PATCH] bugfix for changing STUBS-MPI to plain C --- python/setup_serial.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/setup_serial.py b/python/setup_serial.py index f06937613c..2aa242b19a 100755 --- a/python/setup_serial.py +++ b/python/setup_serial.py @@ -12,7 +12,7 @@ path = os.path.dirname(os.getcwd()) # list of src files for LAMMPS and MPI STUBS libfiles = glob.glob("%s/src/*.cpp" % path) + \ - glob.glob("%s/src/STUBS/*.cpp" % path) + glob.glob("%s/src/STUBS/*.c" % path) lammps_library = Extension("_lammps_serial", sources = libfiles,