- Regenerate distinfo

- Fix build when Samba is installed and configured as PDC [1]
- Make build reproducible [2]

PR:	209724
Submitted by:	mail_of_sergey@mail.ru
Submitted by:	amdmi3 [1] [2]
This commit is contained in:
Alex Kozlov 2016-06-06 04:42:15 +00:00
parent b64396c3db
commit 54ffbcf921
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=416442
2 changed files with 36 additions and 0 deletions

View File

@ -1,3 +1,4 @@
TIMESTAMP = 1465187272
SHA256 (xloadimage_4.1.orig.tar.gz) = 400bc7d84dcfb3265a7a1ce51819679dc3adaeda231514bd89b0f932b78ff5c4
SIZE (xloadimage_4.1.orig.tar.gz) = 596021
SHA256 (xloadimage_4.1-21.debian.tar.gz) = 4a15879f501462f1e45f3f8064a67b46362826c44bab5827e5dc051cd5c0a49f

View File

@ -0,0 +1,35 @@
Index: build-info
@@ -3,32 +3,16 @@
# try to find out the build date
-if [ -x /bin/date ]; then
- date='char *BuildDate= "'`/bin/date`'";'
-else
date='char *BuildDate= (char *)0;'
-fi
# try to find out who's doing the build. there are two common places
# for 'id', /bin/id and /usr/bin/id.
-if [ -x /bin/id ]; then
- user='char *BuildUser= "'`/bin/id`'";'
-else
- if [ -x /usr/bin/id ]; then
- user='char *BuildUser= "'`/usr/bin/id`'";'
- else
user='char *BuildUser= (char *)0;'
- fi
-fi
# try to find out the system information
-if [ -x /bin/uname ]; then
- uname='char *BuildSystem= "'`/bin/uname -a`'";'
-else
- uname='char *BuildSystem= "<unknown system>";'
-fi
+ uname='char *BuildSystem= "FreeBSD";'
echo '/* THIS FILE IS AUTOMATICALLY GENERATED */' > build.c
echo $uname >> build.c