diff options
author | Matt Rendina <rendinam@users.noreply.github.com> | 2017-10-25 12:17:25 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-25 12:17:25 -0400 |
commit | 6f008e7f3fdeef98df5ff9215af2020a5dc89b19 (patch) | |
tree | 65fdd811011cbcfa9989894da7ec139bb1dc9c7c | |
parent | 16f4e20bdac5cf7fbf84aa2d1a1f6d9ee540e4ba (diff) | |
download | astroconda-contrib-6f008e7f3fdeef98df5ff9215af2020a5dc89b19.tar.gz |
Set vars to allow libpython2.7 to be located
-rw-r--r-- | dbus-python/build.sh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/dbus-python/build.sh b/dbus-python/build.sh index 0259769..d463597 100644 --- a/dbus-python/build.sh +++ b/dbus-python/build.sh @@ -1,3 +1,7 @@ +export CFLAGS="-I$PREFIX/include" +export LDFLAGS="-L$PREFIX/lib" +export PKG_CONFIG_PATH="$PREFIX/lib/pkgconfig" + ./configure --prefix=$PREFIX make make install |