Merge pull request #318 from jimklimov/date-prog-sun

faketime.c: default to GNU date as "gdate" on Sun-related OSes
This commit is contained in:
Wolfgang Hommel
2021-03-28 19:35:41 +02:00
committed by GitHub

View File

@@ -50,7 +50,7 @@
const char version[] = "0.9.9";
#ifdef __APPLE__
#if (defined __APPLE__) || (defined __sun)
static const char *date_cmd = "gdate";
#else
static const char *date_cmd = "date";