URI: 
       Fix build - ubase - suckless linux base utils
  HTML git clone git://git.suckless.org/ubase
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
   DIR commit cdaa7b860ea3af523318bc8d3c9a412fcd0d24b4
   DIR parent 570a2bf4ce82a5836351f8b806ba53c2adff8692
  HTML Author: FRIGN <dev@frign.de>
       Date:   Mon,  7 Sep 2015 11:28:30 +0200
       
       Fix build
       
       Dimitris forgot to change one line, which could, depending on the
       environment, break the build ($LD would be empty).
       
       Diffstat:
         M Makefile                            |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
   DIR diff --git a/Makefile b/Makefile
       @@ -152,7 +152,7 @@ config.h:
                cp config.def.h $@
        
        .o:
       -        $(LD) $(LDFLAGS) -o $@ $< $(LIB) $(LDLIBS)
       +        $(CC) $(LDFLAGS) -o $@ $< $(LIB) $(LDLIBS)
        
        .c.o:
                $(CC) $(CFLAGS) $(CPPFLAGS) -o $@ -c $<