Make fails
Brought to you by:
firechipmunk,
honx
Make fails due to spaces instead of TAB:
vvvvvvvvvvvvvvvv
mod_authn_dbi-0.9.0 # make
Making all in src
make[1]: Entering directory
`/usr/local/src/mod_authn_dbi-0.9.0/src'
Makefile:362: *** missing separator (did you mean TAB
instead of 8 spaces?). Stop.
make[1]: Leaving directory
`/usr/local/src/mod_authn_dbi-0.9.0/src'
make: *** [all-recursive] Error 1
^^^^^^^^^^^^
The line is in the ./src/Make file.
I replaced the spaces with a TAB character and Make
proceeded.
john_poole@editionspoole.com
Logged In: NO
Here is a patch that resolves this issue:
src.Makefile.in.patch
--
--- src/Makefile.in 2004-03-02 00:01:40.000000000 -0500
+++ src/Makefile.in.new 2006-03-11 11:31:16.000000000 -0500
@@ -359,7 +359,7 @@
@echo ""
@echo " Please read the documentation at "
@echo "
http://mod-auth.sourceforge.net/docs/mod_authn_dbi"
- @echo " for details on configuration of this module "
+ @echo " for details on configuration of this module "
@echo ""
@echo "***********************************************"
@echo ""
--
cd mod_authn_dbi-0.9.0/src
patch < src.Makefile.in.patch
enjoy!