# HG changeset patch # User jbe # Date 1581363841 -3600 # Node ID 1e72fa29d3fb79ef105729963bbefba23d76808e # Parent a0c49529ab8b0bb4a06c91ff462db30d7e452905 Fixed wrong order of -l options in C-compiler invocation for extos library diff -r a0c49529ab8b -r 1e72fa29d3fb libraries/extos/Makefile --- a/libraries/extos/Makefile Mon Feb 10 20:17:19 2020 +0100 +++ b/libraries/extos/Makefile Mon Feb 10 20:44:01 2020 +0100 @@ -1,7 +1,7 @@ include ../../Makefile.options extos.so: extos.o - $(CC) $(SHAREDFLAGS) -lrt -lcrypt -o extos.$(SLIB_EXT) extos.o + $(CC) $(SHAREDFLAGS) -o extos.$(SLIB_EXT) extos.o -lrt -lcrypt extos.o: extos.c $(CC) -c $(CFLAGS) -o extos.o extos.c