summaryrefslogtreecommitdiffstats
path: root/easy-rsa
diff options
context:
space:
mode:
authorjames <james@e7ae566f-a301-0410-adde-c780ea21d3b5>2007-04-21 17:59:40 +0000
committerjames <james@e7ae566f-a301-0410-adde-c780ea21d3b5>2007-04-21 17:59:40 +0000
commit8d54351056d6c267eb4c0266a1de8b68cb7b92f0 (patch)
treea9a26b1ebea190835595031963f6fb94549a2772 /easy-rsa
parent7e90ca24c05c5b8fb35a1aff78291125d5d7150b (diff)
downloadopenvpn-8d54351056d6c267eb4c0266a1de8b68cb7b92f0.tar.gz
openvpn-8d54351056d6c267eb4c0266a1de8b68cb7b92f0.tar.xz
openvpn-8d54351056d6c267eb4c0266a1de8b68cb7b92f0.zip
Clean up configure on FreeBSD for recent autotool versions that
require that all .h files have to be compiled. Also, FreeBSD install does not support GNU long options which the Makefile in easy-rsa/2.0 uses (not checked the others as we don't install those on Gentoo) -- Roy Marples git-svn-id: http://svn.openvpn.net/projects/openvpn/branches/BETA21/openvpn@1861 e7ae566f-a301-0410-adde-c780ea21d3b5
Diffstat (limited to 'easy-rsa')
-rw-r--r--easy-rsa/2.0/Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/easy-rsa/2.0/Makefile b/easy-rsa/2.0/Makefile
index 902d78f..125ac51 100644
--- a/easy-rsa/2.0/Makefile
+++ b/easy-rsa/2.0/Makefile
@@ -7,7 +7,7 @@ all:
echo "Run make install DESTDIR=/usr/share/somewhere"
install:
- install -c --directory "${DESTDIR}/${PREFIX}"
- install -c --mode=0755 build-* "${DESTDIR}/${PREFIX}"
- install -c --mode=0755 clean-all list-crl inherit-inter pkitool revoke-full sign-req whichopensslcnf "${DESTDIR}/${PREFIX}"
- install -c --mode=0644 openssl-0.9.6.cnf openssl.cnf README vars "${DESTDIR}/${PREFIX}"
+ install -d "${DESTDIR}/${PREFIX}"
+ install -m 0755 build-* "${DESTDIR}/${PREFIX}"
+ install -m 0755 clean-all list-crl inherit-inter pkitool revoke-full sign-req whichopensslcnf "${DESTDIR}/${PREFIX}"
+ install -m 0644 openssl-0.9.6.cnf openssl.cnf README vars "${DESTDIR}/${PREFIX}"