mirror of
https://github.com/postgres/postgres.git
synced 2026-06-10 09:10:33 -04:00
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:
parent
3f20878791
commit
e7663e34b8
1 changed files with 1 additions and 1 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in a new issue