Skip to content

Commit b4fc1f3

Browse files
committed
Makefile: allow overriding DIST_SUFFIX
1 parent d79bd56 commit b4fc1f3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ else
1616
TARGET_OS := LINUX
1717
UNAME_P := $(shell uname -p)
1818
ifeq ($(UNAME_P),x86_64)
19-
DIST_SUFFIX := linux64
19+
DIST_SUFFIX ?= linux64
2020
endif
2121
ifneq ($(filter %86,$(UNAME_P)),)
22-
DIST_SUFFIX := linux32
22+
DIST_SUFFIX ?= linux32
2323
endif
2424
endif
2525
ifeq ($(UNAME_S),Darwin)

0 commit comments

Comments
 (0)