commit | 2b63b073023e7b56e97cf4a09611e7ad5f34eac1 | [log] [tgz] |
---|---|---|
author | Nguyen Anh Quynh <aquynh@gmail.com> | Mon Feb 24 15:26:20 2014 +0800 |
committer | Nguyen Anh Quynh <aquynh@gmail.com> | Mon Feb 24 15:26:20 2014 +0800 |
tree | 1ae4b4bcc30f5d3040674f24e91683e1409bdbd8 | |
parent | 8f856c773e0702c6fd0886ec351d5e89ff2e8363 [diff] [blame] |
fix the last patch on Macport path comparison
diff --git a/Makefile b/Makefile index 7e9a212..ca16217 100644 --- a/Makefile +++ b/Makefile
@@ -98,7 +98,7 @@ # By default, suppose that Brew is installed & use Brew path for pkgconfig file PKGCFCGDIR = /usr/local/lib/pkgconfig # is Macport installed instead? -ifeq (,$(wildcard /opt/local/bin/port)) +ifneq (,$(wildcard /opt/local/bin/port)) # then correct the path for pkgconfig file PKGCFCGDIR = /opt/local/lib/pkgconfig endif