diff options
author | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2012-08-05 19:52:23 +0000 |
---|---|---|
committer | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2012-08-05 19:52:23 +0000 |
commit | 1b4973963160af30cd9b57f89f3d7ecf90422c1d (patch) | |
tree | 3aab26f7e802881e8c6c4a01ede93abe6d4b0831 /etc | |
parent | 08facec9c54884464670ddc14b7b2f7c6fed1749 (diff) |
Force the use of mkdir to create directories.
Recent autotools insist on using install-sh which is stupid
Diffstat (limited to 'etc')
-rw-r--r-- | etc/config.site | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/etc/config.site b/etc/config.site index 5220d8bd8..70bc8abc9 100644 --- a/etc/config.site +++ b/etc/config.site @@ -1,4 +1,4 @@ -# $OpenBSD: config.site,v 1.5 2011/12/10 15:02:12 matthieu Exp $ +# $OpenBSD: config.site,v 1.6 2012/08/05 19:52:22 matthieu Exp $ ac_cv_c_compiler_gnu=${ac_cv_c_compiler_gnu=yes} ac_cv_c_const=${ac_cv_c_const=yes} ac_cv_cxx_compiler_gnu=${ac_cv_cxx_compiler_gnu=yes} @@ -15,6 +15,7 @@ ac_cv_path_install=${ac_cv_path_install='/usr/bin/install -p'} ac_cv_path_GREP=${ac_cv_path_GREP=/usr/bin/grep} ac_cv_path_EGREP=${ac_cv_path_EGREP=/usr/bin/egrep} ac_cv_path_FGREP=${ac_cv_path_EGREP=/usr/bin/fgrep} +ac_cv_path_mkdir=${ac_cv_path_mkdir=/bin/mkdir} am_cv_prog_tar_ustar=${am_cv_prog_tar_ustar=/usr/bin/tar} ac_cv_prog_AWK=${ac_cv_prog_AWK=awk} ac_cv_prog_HAS_PERL=${ac_cv_prog_HAS_PERL=yes} |