Description: pkg-config must be called with package name
Author: Michael R. Crusoe <crusoe@ucdavis.edu>
--- jellyfish.orig/swig/python/setup.py
+++ jellyfish/swig/python/setup.py
@@ -21,7 +21,7 @@
     os.system("swig -c++ -python -o jellyfish_wrap.cxx ../jellyfish.i")
 
 jf_include = [re.sub(r'-I', '', x) for x in os.popen("pkg-config --cflags-only-I jellyfish-2.0").read().rstrip().split()]
-jf_cflags  = os.popen("pkg-config --cflags-only-other").read().rstrip().split()
+jf_cflags  = os.popen("pkg-config --cflags-only-other jellyfish-2.0").read().rstrip().split()
 
 jf_libs    = [re.sub(r'-l', '', x) for x in os.popen("pkg-config --libs-only-l jellyfish-2.0").read().rstrip().split()]
 jf_libdir  = [re.sub(r'-L', '', x) for x in os.popen("pkg-config --libs-only-L jellyfish-2.0").read().rstrip().split()]
