Skip to content

Commit

Permalink
Drop unused library linkage from test tool
Browse files Browse the repository at this point in the history
> ld: cannot find -lgauche-0.98: No such file or directory

"-lgauche-0.98" is not required for this program.
"-lgauche-0.98" breaks first time build that not installed gauche yet.
  • Loading branch information
qykth-git authored and shirok committed Jul 6, 2024
1 parent 77b4e41 commit 0a8a788
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ext/dbm/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ odbm.sci dbm--odbm.c : odbm.scm
# auxiliary stuff to find out the extension of ndbm file(s).
ndbm-makedb : ndbm-makedb.c
$(CC) $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS) -o ndbm-makedb \
$(srcdir)/ndbm-makedb.c $(LOCAL_LFLAGS) $(XLDFLAGS) @NDBMLIB@ $(LIBS)
$(srcdir)/ndbm-makedb.c $(LOCAL_LFLAGS) $(XLDFLAGS) @NDBMLIB@

ndbm-suffixes.h : ndbm-makedb ndbm-suffixes.scm
$(GOSH) $(srcdir)/ndbm-suffixes.scm ndbm-suffixes.h
Expand Down

0 comments on commit 0a8a788

Please sign in to comment.