mirror of
https://github.com/corda/corda.git
synced 2025-01-06 05:04:20 +00:00
fix makefile for building on linux
This may break OS X PowerPC, but I don't have such a machine to test on at the moment.
This commit is contained in:
parent
8512d6c74c
commit
a85cf0115d
6
makefile
6
makefile
@ -1,10 +1,10 @@
|
|||||||
MAKEFLAGS = -s
|
#MAKEFLAGS = -s
|
||||||
|
|
||||||
name = avian
|
name = avian
|
||||||
version = 0.1.1
|
version = 0.1.1
|
||||||
|
|
||||||
build-arch = "$(shell uname -m)"
|
build-arch = $(shell uname -m)
|
||||||
ifeq ($(build-arch),"Power Macintosh")
|
ifeq ($(build-arch),Power)
|
||||||
build-arch = powerpc
|
build-arch = powerpc
|
||||||
endif
|
endif
|
||||||
ifeq ($(build-arch),i586)
|
ifeq ($(build-arch),i586)
|
||||||
|
Loading…
Reference in New Issue
Block a user