diff options
author | james <james@e7ae566f-a301-0410-adde-c780ea21d3b5> | 2007-04-21 17:59:40 +0000 |
---|---|---|
committer | james <james@e7ae566f-a301-0410-adde-c780ea21d3b5> | 2007-04-21 17:59:40 +0000 |
commit | 8d54351056d6c267eb4c0266a1de8b68cb7b92f0 (patch) | |
tree | a9a26b1ebea190835595031963f6fb94549a2772 /easy-rsa | |
parent | Use Server 2003 rather than Vista as x64 target for tap/tapinstall. (diff) | |
download | openvpn-8d54351056d6c267eb4c0266a1de8b68cb7b92f0.tar.xz |
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/Makefile | 8 |
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}" |