Merge pull request #14634 from neheb/a

alpine: try to make reproducible
This commit is contained in:
Rosen Penev 2021-02-13 22:26:34 -08:00 committed by GitHub
commit 9e67e8a963
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 19 additions and 1 deletions

View File

@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
PKG_NAME:=alpine
PKG_VERSION:=2.24
PKG_RELEASE:=1
PKG_RELEASE:=2
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
PKG_SOURCE_URL:=http://alpine.x10host.com/alpine/release/src

View File

@ -0,0 +1,18 @@
--- a/pico/blddate.c
+++ b/pico/blddate.c
@@ -28,6 +28,7 @@ main(argc, argv)
exit(1);
}
+/*
time(&ltime);
t = localtime(&ltime);
fprintf(outfile,"char datestamp[]=\"%02d-%s-%d\";\n", t->tm_mday,
@@ -46,6 +47,7 @@ main(argc, argv)
1900 + t->tm_year);
fprintf(outfile, "char hoststamp[]=\"random-pc\";\n");
+*/
fprintf(outfile, "char configoptions[] = \"\";\n");
fclose(outfile);