-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
configury: update much configury to ompi main
aligns with ompi main branch ref: cebad71e4f50d49e486ccd54668cf58698556a7c
- Loading branch information
Showing
11 changed files
with
446 additions
and
700 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#!/bin/sh | ||
# | ||
# Copyright (c) 2017 Research Organization for Information Science | ||
# and Technology (RIST). All rights reserved. | ||
# Copyright (c) 2020 Cisco Systems, Inc. All rights reserved. | ||
|
||
# Provide a way to override build date for reproducible build results | ||
# See https://reproducible-builds.org/ for why this is good. | ||
|
||
# There are several different flavors of date(1) out there. | ||
# Try a few different CLI options for date(1) to see which one works. | ||
|
||
SOURCE_DATE_EPOCH="${SOURCE_DATE_EPOCH:-$(date +%s)}" | ||
date -u -d "@$SOURCE_DATE_EPOCH" "$@" 2>/dev/null || date -u -r "$SOURCE_DATE_EPOCH" "$@" 2>/dev/null || date -u "$@" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.