python3 -> python

This commit is contained in:
Lance Vick 2023-10-18 15:21:06 -07:00
parent 00ce00c246
commit a2315fdbc8
Signed by: lrvick
GPG Key ID: 8E47A1EC35A1551D
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@ XDG_CONFIG_HOME := $(HOME)/.config
# MacOS users do not have a 'date' command that supports milliseconds # MacOS users do not have a 'date' command that supports milliseconds
# This is what we are forced to do. Other ideas welcome # This is what we are forced to do. Other ideas welcome
define epochms define epochms
$$(python3 -c 'from time import time; print(int(round(time() * 1000)))') $$(python -c 'from time import time; print(int(round(time() * 1000)))')
endef endef
ifneq ($(TOOLCHAIN_PROFILE),false) ifneq ($(TOOLCHAIN_PROFILE),false)