Skip to content

Commit

Permalink
[libretro] Fix makefile when git version is unknown
Browse files Browse the repository at this point in the history
  • Loading branch information
drhelius committed Jan 5, 2025
1 parent 94b7355 commit ea31bb1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion platforms/libretro/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,7 @@ else
endif

GIT_VERSION ?= $(shell git describe --abbrev=7 --dirty --always --tags || echo unknown)
ifneq ($(GIT_VERSION)," unknown")
ifneq ($(GIT_VERSION), unknown)
CXXFLAGS += -DEMULATOR_BUILD=\"$(GIT_VERSION)\"
endif

Expand Down

0 comments on commit ea31bb1

Please sign in to comment.