HylaFAX The world's
most advanced open source fax server
|
|
[
Date Prev][
Date Next][
Thread Prev][
Thread Next]
[
Date Index]
[
Thread Index]
Re: [hylafax-users] 4.1 make install fails
At 12:40 AM 9/22/01 +0930, bruce wrote:
>good folk,
>hylafax 4.1 ,mandrake 8,
>configure, make
>seem to process ok, following readout from
>make install
>had a look through several makefile for missing tabs, no luck.
>anyone else encountered this and resolved it?
>
>regards
>bruce
>
>
>
>/bin/bash ../port/install.sh -m 755 -dir -idb hylafax.man.client \
> /usr/local/man /usr/local/man/man1 /usr/local/man/man5
>cd cman.apps; make install
>/root/hylafax-4.1/man/cman.apps
>make[2]: Entering directory `/root/hylafax-4.1/man/cman.apps'
>Makefile:5: *** missing separator. Stop.
>make[2]: Leaving directory `/root/hylafax-4.1/man/cman.apps'
>make[1]: *** [installClientManPages] Error 2
>make[1]: Leaving directory `/root/hylafax-4.1/man'
>make: *** [install] Error 2
We've seen this before, but the reporter didn't follow up with the proposed
fix.
Try the attached patch against the source and then retry...
Lee.
--- hylafax.orig/man/Makefile.in Mon Jun 18 00:53:57 2001
+++ hylafax/man/Makefile.in Tue Jun 26 01:15:00 2001
@@ -216,8 +216,7 @@
${ECHO} 'install:'; \
(cd cman.apps; for i in *.1; do \
f=${MANCAPPNAME}; \
- ${ECHO} ' $${INSTALL} -m 444 -F $${MAN}/$${MANAPPS} \
- -idb $${PRODUCT}.man.client -src' "$$i" '-O' "$$f"; \
+ ${ECHO} ' $${INSTALL} -m 444 -F $${MAN}/$${MANAPPS} -idb $${PRODUCT}.man.client -src' "$$i" '-O' "$$f"; \
done) \
)>cman.apps/Makefile
cman.files/Makefile: ${DEPTH}/defs cman.files ${MANCFILE}
@@ -228,8 +227,7 @@
${ECHO} 'install:'; \
(cd cman.files; for i in *.4f; do \
f=${MANCFILENAME}; \
- ${ECHO} ' $${INSTALL} -m 444 -F $${MAN}/$${MANFILES} \
- -idb $${PRODUCT}.man.client -src' "$$i" '-O' "$$f"; \
+ ${ECHO} ' $${INSTALL} -m 444 -F $${MAN}/$${MANFILES} -idb $${PRODUCT}.man.client -src' "$$i" '-O' "$$f"; \
done) \
)>cman.files/Makefile
sman.apps/Makefile: ${DEPTH}/defs sman.apps ${MANSAPP}
@@ -240,8 +238,7 @@
${ECHO} 'install:'; \
(cd sman.apps; for i in *.1m; do \
f=${MANSAPPNAME}; \
- ${ECHO} ' $${INSTALL} -m 444 -F $${MAN}/$${MANSYS} \
- -idb $${PRODUCT}.man.server -src' "$$i" '-O' "$$f"; \
+ ${ECHO} ' $${INSTALL} -m 444 -F $${MAN}/$${MANSYS} -idb $${PRODUCT}.man.server -src' "$$i" '-O' "$$f"; \
done) \
)>sman.apps/Makefile
sman.files/Makefile: ${DEPTH}/defs sman.files ${MANSFILE}
@@ -252,8 +249,7 @@
${ECHO} 'install:'; \
(cd sman.files; for i in *.4f; do \
f=${MANSFILENAME}; \
- ${ECHO} ' $${INSTALL} -m 444 -F $${MAN}/$${MANFILES} \
- -idb $${PRODUCT}.man.server -src' "$$i" '-O' "$$f"; \
+ ${ECHO} ' $${INSTALL} -m 444 -F $${MAN}/$${MANFILES} -idb $${PRODUCT}.man.server -src' "$$i" '-O' "$$f"; \
done) \
)>sman.files/Makefile