Tru64 twig
Henrik Lassen
henrik.lassen at mobilix.dk
Thu Jan 18 13:12:13 UTC 2001
Dear Debugger
I have downloaded and made a raw port. Tru64 UNIX will not accept "mkdir"
with a non existing path - must use "mkdir -p" please correct Makefile.
The tar ball will only operate using gcc - is this true??
Rgds
Henrik
------------------------------------------------
# Options: -c (continue), -N (download only if newer)
release=inn-2.3.1
wget -cN --retr-symlinks ftp://ftp.isc.org/isc/inn/$release.tar.gz
gunzip -c $release.tar.gz | tar xfv -
release=`gunzip -c $release.tar.gz | tar tf - | sed '1q' | cut -d'/' -f1`
cd $release
./configure
#####################
# Patch stuff - sorry
#####################
patch Makefile <<EOF
148c148
< for d in \`sed \$(DISTDIRS) < MANIFEST\` ; do mkdir \$\$d ; done
---
> for d in \`sed \$(DISTDIRS) < MANIFEST\` ; do mkdir -p \$\$d ; done
EOF
make clean
make
More information about the inn-bugs
mailing list