krytarowski created this revision. krytarowski added subscribers: joerg, lldb-commits, brucem. krytarowski set the repository for this revision to rL LLVM.
pkgsrc (on NetBSD) ships with python2.7-config. Repository: rL LLVM http://reviews.llvm.org/D14528 Files: Makefile lib/Makefile scripts/Python/modules/readline/Makefile Index: scripts/Python/modules/readline/Makefile =================================================================== --- scripts/Python/modules/readline/Makefile +++ scripts/Python/modules/readline/Makefile @@ -20,7 +20,8 @@ SHARED_LIBRARY = 1 LOADABLE_MODULE = 1 -PYTHON_INC_DIR = $(shell python-config --includes) +PYTHON_CONFIG?= python-config +PYTHON_INC_DIR = $(shell $(PYTHON_CONFIG) --includes) # Include all archives in the shared lib USEDLIBS := Index: lib/Makefile =================================================================== --- lib/Makefile +++ lib/Makefile @@ -18,7 +18,8 @@ SHARED_LIBRARY = 1 ifeq (,$(findstring -DLLDB_DISABLE_PYTHON,$(CXXFLAGS))) -PYTHON_BUILD_FLAGS = $(shell python-config --ldflags) +PYTHON_CONFIG?= python-config +PYTHON_BUILD_FLAGS = $(shell $(PYTHON_CONFIG) --ldflags) endif # Include all archives in liblldb.so file Index: Makefile =================================================================== --- Makefile +++ Makefile @@ -46,7 +46,8 @@ ifeq (,$(findstring -DLLDB_DISABLE_PYTHON,$(CXXFLAGS))) # Set Python include directory -PYTHON_INC_DIR = $(shell python-config --includes) +PYTHON_CONFIG?= python-config +PYTHON_INC_DIR = $(shell $(PYTHON_CONFIG) --includes) CPP.Flags += $(PYTHON_INC_DIR) endif
Index: scripts/Python/modules/readline/Makefile =================================================================== --- scripts/Python/modules/readline/Makefile +++ scripts/Python/modules/readline/Makefile @@ -20,7 +20,8 @@ SHARED_LIBRARY = 1 LOADABLE_MODULE = 1 -PYTHON_INC_DIR = $(shell python-config --includes) +PYTHON_CONFIG?= python-config +PYTHON_INC_DIR = $(shell $(PYTHON_CONFIG) --includes) # Include all archives in the shared lib USEDLIBS := Index: lib/Makefile =================================================================== --- lib/Makefile +++ lib/Makefile @@ -18,7 +18,8 @@ SHARED_LIBRARY = 1 ifeq (,$(findstring -DLLDB_DISABLE_PYTHON,$(CXXFLAGS))) -PYTHON_BUILD_FLAGS = $(shell python-config --ldflags) +PYTHON_CONFIG?= python-config +PYTHON_BUILD_FLAGS = $(shell $(PYTHON_CONFIG) --ldflags) endif # Include all archives in liblldb.so file Index: Makefile =================================================================== --- Makefile +++ Makefile @@ -46,7 +46,8 @@ ifeq (,$(findstring -DLLDB_DISABLE_PYTHON,$(CXXFLAGS))) # Set Python include directory -PYTHON_INC_DIR = $(shell python-config --includes) +PYTHON_CONFIG?= python-config +PYTHON_INC_DIR = $(shell $(PYTHON_CONFIG) --includes) CPP.Flags += $(PYTHON_INC_DIR) endif
_______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits