Here someone post this me for the ip_masq_icq module. Using this seemed to
work fine. Except to use it you still need to load ipmasqadm.
**********************************************************
Yes there are two lines in the make file for ip_masq_icq-0.55 that need
to be changed.
Line 15 is the*line:
$(shell egrep '^(VERSION|PATCHLEVEL|SUBLEVEL|EXTRAVERSION|ARCH) '
$(KSRC)/Makefile >Makefile.arch)
Needs to be changed to:
tempvar := $(shell egrep
'^(VERSION|PATCHLEVEL|SUBLEVEL|EXTRAVERSION|ARCH) ' $(KSRC)/Makefile
Quote:>Makefile.arch)
And line 17:
$(shell egrep -v '^ |^[^ :]*:' $(KSRC)/arch/$(ARCH)/Makefile
Quote:>Makefile.arch)
needs to be changed to
tempvar := $(shell egrep -v '^ |^[^ :]*:'
$(KSRC)/arch/$(ARCH)/Makefile >Makefile.arch)
This should fix the install problem. The $(shell ) returns a value so
there needs to be some where to send it. the "tempvar := " should fix
this problem.
**********************************************************
> RH6.0 Installed with all ipmasq options compiled on the kernel
> I'm trying to get icq on my client machine to work properly and I have read
> that I had to install ipmasqadm. I untarred the ipmasqadm-0.4.2.tar.gz ok,
> but when I try to do a make install, I get an error stating:
> install -m 700 -o root -g root modules/*.so /usr/lib/ipmasqadm
> install: modules/*.so: No such file or directory
> make: *** [install] Error 1
> Please help .. I have also tried to install the ip_masq_icq-0.55 mod with a
> make install command and I also get an error stating:
> Makefile:15 *** missing separator. Stop.
> Please help. My objective is to get icq to work without any hitches on my
> client machine.