Skip to content

Commit

Permalink
Build: Handle $PACKAGES_PATH as $UDK_PATH when available for utils
Browse files Browse the repository at this point in the history
  • Loading branch information
vit9696 committed May 29, 2020
1 parent 47c43af commit b1a4c4a
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion User/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,14 @@

CC ?= gcc

UDK_PATH ?= ../../UDK
ifeq ($(UDK_PATH),)
ifneq ($(PACKAGES_PATH),)
UDK_PATH = $(PACKAGES_PATH)
else
UDK_PATH ?= ../../UDK
endif
endif

UDK_ARCH ?= X64

ifeq ($(OS),Windows_NT)
Expand Down

0 comments on commit b1a4c4a

Please sign in to comment.