OSDN Git Service

LAtest cvs has a little bug in src/interfaces/ecpg/lib/Makefile.in
authorBruce Momjian <bruce@momjian.us>
Thu, 15 Oct 1998 16:17:33 +0000 (16:17 +0000)
committerBruce Momjian <bruce@momjian.us>
Thu, 15 Oct 1998 16:17:33 +0000 (16:17 +0000)
        $(LD) $(LDFLAGS_SL) -o $@ ecpglib.sho typename.sho.o

must be
        $(LD) $(LDFLAGS_SL) -o $@ ecpglib.sho.o typename.sho.o
                                             ^^

        Regards,

        Oleg

src/interfaces/ecpg/lib/Makefile.in

index 690f7c2..310a801 100644 (file)
@@ -75,7 +75,7 @@ endif
 all: lib$(NAME).a $(shlib)
 
 $(shlib): ecpglib.sho.o typename.sho.o
-       $(LD) $(LDFLAGS_SL) -o $@ ecpglib.sho typename.sho.o
+       $(LD) $(LDFLAGS_SL) -o $@ ecpglib.sho.o typename.sho.o
 
 clean:
        rm -f *.o *.sho *.a core a.out *~ $(shlib) lib$(NAME)$(DLSUFFIX)