1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-30 20:47:46 +00:00

Merge pull request #511 from ebfe/stdbuf

stdbuf: fix library output name
This commit is contained in:
Heather 2015-01-25 19:37:33 +03:00
commit aae7f5775e

View file

@ -143,16 +143,16 @@ INSTALLEES := \
SYSTEM := $(shell uname) SYSTEM := $(shell uname)
DYLIB_EXT := DYLIB_EXT :=
ifeq ($(SYSTEM),Linux) ifeq ($(SYSTEM),Linux)
DYLIB_EXT := .so DYLIB_EXT := so
endif endif
ifeq ($(SYSTEM),Darwin) ifeq ($(SYSTEM),Darwin)
DYLIB_EXT := .dylib DYLIB_EXT := dylib
endif endif
# Libaries to install # Libaries to install
LIBS := LIBS :=
ifneq (,$(findstring stdbuf, $(INSTALLEES))) ifneq (,$(findstring stdbuf, $(INSTALLEES)))
LIBS += libstdbuf$(DYLIB_EXT) LIBS += libstdbuf.$(DYLIB_EXT)
endif endif
# Programs with usable tests # Programs with usable tests