You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
536 B
13 lines
536 B
# DP: Build getbuildinfo.o with DATE/TIME values when defined |
|
|
|
--- a/Makefile.pre.in |
|
+++ b/Makefile.pre.in |
|
@@ -766,6 +766,8 @@ Modules/getbuildinfo.o: $(PARSER_OBJS) \ |
|
-DGITVERSION="\"`LC_ALL=C $(GITVERSION)`\"" \ |
|
-DGITTAG="\"`LC_ALL=C $(GITTAG)`\"" \ |
|
-DGITBRANCH="\"`LC_ALL=C $(GITBRANCH)`\"" \ |
|
+ $(if $(BUILD_DATE),-DDATE='"$(BUILD_DATE)"') \ |
|
+ $(if $(BUILD_TIME),-DTIME='"$(BUILD_TIME)"') \ |
|
-o $@ $(srcdir)/Modules/getbuildinfo.c |
|
|
|
Modules/getpath.o: $(srcdir)/Modules/getpath.c Makefile
|
|
|