diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-06-21 22:07:24 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-06-21 22:07:24 +0000 |
commit | 040f92bfc0a2d631eaac3ef6314d5fecd6e32152 (patch) | |
tree | a4d1d2111112d4c3cc49535fc2028e718f0cc0e0 /package/vtun | |
parent | 5dbb973e0e30ca442ac730806115ea8ad5df9678 (diff) | |
download | buildroot-novena-040f92bfc0a2d631eaac3ef6314d5fecd6e32152.tar.gz buildroot-novena-040f92bfc0a2d631eaac3ef6314d5fecd6e32152.zip |
- use correct path for lzo libs and headers et al
Diffstat (limited to 'package/vtun')
-rw-r--r-- | package/vtun/vtun.mk | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/package/vtun/vtun.mk b/package/vtun/vtun.mk index 3a2f184f3..6a8a4ffa9 100644 --- a/package/vtun/vtun.mk +++ b/package/vtun/vtun.mk @@ -44,9 +44,9 @@ $(VTUN_DIR)/.configured: $(VTUN_DIR)/.unpacked --localstatedir=/var \ --mandir=/usr/man \ --infodir=/usr/info \ - --with-ssl-headers=$(STAGING_DIR)/include/openssl \ - --with-lzo-headers=$(STAGING_DIR)/include \ - --with-lzo-lib=$(STAGING_DIR)/lib \ + --with-ssl-headers=$(STAGING_DIR)/usr/include/openssl \ + --with-lzo-headers=$(STAGING_DIR)/usr/include \ + --with-lzo-lib=$(STAGING_DIR)/usr/lib \ ); touch $(VTUN_DIR)/.configured |