Skip to content
Snippets Groups Projects
Commit ddeddbfb authored by Manuel Rodríguez-Pascual's avatar Manuel Rodríguez-Pascual
Browse files

possible bug in smap Makefile

LIBS can have a previous value, as depicted in ./configure --help

"Some influential environment variables:
(...)
 LIBS        libraries to pass to the linker, e.g. -l<library>
"
Original assignation to LIBS overwrites this value. With this edition, the user defined flags and NCURSES ones are both employed by the linker.
parent a06452f2
No related branches found
No related tags found
No related merge requests found
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
AUTOMAKE_OPTIONS = foreign AUTOMAKE_OPTIONS = foreign
LIBS=$(NCURSES) LIBS+= $(NCURSES)
AM_CPPFLAGS = -I$(top_srcdir) $(BG_INCLUDES) AM_CPPFLAGS = -I$(top_srcdir) $(BG_INCLUDES)
if BUILD_SMAP if BUILD_SMAP
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment