Hi Dave,

> Index: agent/mibgroup/Makefile.in
> ===================================================================
> RCS file: /cvsroot/net-snmp/net-snmp/agent/mibgroup/Makefile.in,v
> retrieving revision 5.3
> diff -u -r5.3 Makefile.in
> --- agent/mibgroup/Makefile.in        13 Sep 2006 17:00:27 -0000      5.3
> +++ agent/mibgroup/Makefile.in        24 Nov 2006 09:29:48 -0000
> @@ -22,9 +22,12 @@
>  .c.o:
>       $(CC) -c $(CPPFLAGS) $(CFLAGS) -o $@ $<
>  
> -OBJS  = @mib_module_list_o@
> -LOBJS = @mib_module_list_lo@
> -SRCS  = @mib_module_list_c@
> +OBJS  = \
> +     @mib_module_list_o@
> +LOBJS = \
> +     @mib_module_list_lo@
> +SRCS  = \
> +     @mib_module_list_c@
>  
>  all: standardall $(LOBJS)
>  

Nope. This way OBJS, LOBJS and SRCS will be empty.
I was more thinking on a fix like this (similar way as in agent/Makefile.in).

Thanks,
Jochen
--- agent/mibgroup/Makefile.in.orig	2006-11-24 11:08:13.000000000 +0100
+++ agent/mibgroup/Makefile.in	2006-11-24 11:09:06.000000000 +0100
@@ -22,9 +22,13 @@
 .c.o:
 	$(CC) -c $(CPPFLAGS) $(CFLAGS) -o $@ $<
 
-OBJS  = @mib_module_list_o@
-LOBJS = @mib_module_list_lo@
-SRCS  = @mib_module_list_c@
[EMAIL PROTECTED]@
[EMAIL PROTECTED]@
[EMAIL PROTECTED]@
+
+OBJS  = $(mib_module_list_o)
+LOBJS = $(mib_module_list_lo)
+SRCS  = $(mib_module_list_c)
 
 all: standardall $(LOBJS)
 
-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Net-snmp-coders mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/net-snmp-coders

Reply via email to