From 6a9d769269d14f55ca83598f7a7ea9532b0f0f71 Mon Sep 17 00:00:00 2001 From: Michael Gehring Date: Sun, 25 Jan 2015 13:40:18 +0100 Subject: [PATCH] stdbuf: fix library output name --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 01e7de374..115881945 100644 --- a/Makefile +++ b/Makefile @@ -143,16 +143,16 @@ INSTALLEES := \ SYSTEM := $(shell uname) DYLIB_EXT := ifeq ($(SYSTEM),Linux) - DYLIB_EXT := .so + DYLIB_EXT := so endif ifeq ($(SYSTEM),Darwin) - DYLIB_EXT := .dylib + DYLIB_EXT := dylib endif # Libaries to install LIBS := ifneq (,$(findstring stdbuf, $(INSTALLEES))) -LIBS += libstdbuf$(DYLIB_EXT) +LIBS += libstdbuf.$(DYLIB_EXT) endif # Programs with usable tests