LAtest cvs has a little bug in src/interfaces/ecpg/lib/Makefile.in

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

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

        Regards,

        Oleg
This commit is contained in:
Bruce Momjian 1998-10-15 16:17:33 +00:00
parent 3f20878791
commit e7663e34b8
1 changed files with 1 additions and 1 deletions

View 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)