Fix Makefile's BUILDDIR definition
This commit is contained in:
4
Makefile
4
Makefile
@@ -3,10 +3,10 @@
|
|||||||
IsMinGW := $(findstring MSYS,$(shell uname -s))$(findstring MINGW,$(shell uname -s))
|
IsMinGW := $(findstring MSYS,$(shell uname -s))$(findstring MINGW,$(shell uname -s))
|
||||||
ifneq (,$(IsMinGW))
|
ifneq (,$(IsMinGW))
|
||||||
RES_APP := filesync.exe
|
RES_APP := filesync.exe
|
||||||
BUILDDIR := build-$(shell gcc -v 2>&1 | grep "Target:" | cut --delimiter=' ' --fields=2)
|
BUILDDIR := build-$(shell gcc -dumpmachine)
|
||||||
else
|
else
|
||||||
RES_APP := filesync
|
RES_APP := filesync
|
||||||
BUILDDIR := build-$(shell gcc -v 2>&1 | grep "Target:" | cut --delimiter=' ' --fields=2)
|
BUILDDIR := build-$(shell gcc -dumpmachine)
|
||||||
endif
|
endif
|
||||||
VERBOSE_BUILD=false
|
VERBOSE_BUILD=false
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user