forked from OSchip/llvm-project
Fix build on FreeBSD after r196141
This should probably be replaced with build infrastructure support for a platform-specific canonical Python include path, but for now it should restore the FreeBSD buildbot. llvm-svn: 196167
This commit is contained in:
parent
1d0d2a48e7
commit
0471dcd274
|
@ -18,7 +18,11 @@
|
|||
|
||||
#else
|
||||
|
||||
#ifdef __FreeBSD__
|
||||
#include <Python.h>
|
||||
#else
|
||||
#include <Python/Python.h>
|
||||
#endif
|
||||
|
||||
#endif // LLDB_DISABLE_PYTHON
|
||||
|
||||
|
|
Loading…
Reference in New Issue