mirror of
https://git.code.sf.net/p/quake/quakeforge-old
synced 2024-11-24 21:01:17 +00:00
Treat all ia32 archs the same in the QW makefiles to match UQ
This commit is contained in:
parent
4a5ba0bcb1
commit
6eb0af1efd
2 changed files with 2 additions and 2 deletions
|
@ -7,7 +7,7 @@ VERSION=2.40
|
|||
ifneq (,$(findstring alpha,$(shell uname -m)))
|
||||
ARCH=axp
|
||||
else
|
||||
ARCH=$(shell uname -m)
|
||||
ARCH=$(shell uname -m | sed s/i.86/i386/)
|
||||
endif
|
||||
|
||||
PROJECT_DIR=..
|
||||
|
|
|
@ -7,7 +7,7 @@ VERSION=2.40
|
|||
ifneq (,$(findstring alpha,$(shell uname -m)))
|
||||
ARCH=axp
|
||||
else
|
||||
ARCH=$(shell uname -m)
|
||||
ARCH=$(shell uname -m | sed s/i.86/i386/)
|
||||
endif
|
||||
|
||||
PROJECT_DIR=..
|
||||
|
|
Loading…
Reference in a new issue