| 面倒を避けるには、make install ではなく手動でインストールしたほうが
|よいでかも。
一応、定石として、少なくとも apache 1.3.x では
$ make install INSTALL='install -c'
で、ほぼ問題無かったと思います。cyghttpd.dll だかは別として。
| Cygwin環境では、実行プログラムに拡張子exeが付くので、それを考慮していない
|インストーラだからではないでしょうか。
これも、1.3.x では一文字間違った修正があった為のようです。
--- apache_1.3.29/src/helpers/install.sh-dist
+++ apache_1.3.29/src/helpers/install.sh
@@ -90,7 +90,7 @@
# Check if we need to add an executable extension (such as ".exe")
# on specific OS to src and dst
if [ -f "$src.exe" ]; then
- if [ -f "$src" ]; then
+ if [ -f "$src." ]; then
: # Cygwin [ test ] is too stupid to do [ -f "$src.exe" ] && [ ! -f "$src" ]
else
ext=".exe"
|