mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-07-29 03:57:44 +00:00
stdbuf: fix library output name
This commit is contained in:
parent
61e698ff9f
commit
6a9d769269
1 changed files with 3 additions and 3 deletions
6
Makefile
6
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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue