freebsd-ports/lang/maude/files/patch-src_Mixfix_banner.cc
Li-Wen Hsu c07192f844 - Update to 2.7.1
- Add CVC4 support option and enabled by default
- Unbreak on aarch64, sbrk is not used anymore
- Remove build date to make the build reproducible
- Pass maintainership to submitter
- Pet `portlint -abct`

PR:		231443
Submitted by:	Greg V <greg@unrelenting.technology>
2018-12-12 05:30:24 +00:00

13 lines
517 B
C++

Make the build reproducible
--- src/Mixfix/banner.cc.orig 2018-09-17 10:53:25 UTC
+++ src/Mixfix/banner.cc
@@ -53,8 +53,7 @@ printBanner(std::ostream& s)
Tty(Tty::GREEN) << 'e' <<
Tty(Tty::RESET) << " ---\n";
s << "\t\t /||||||||||||||||||\\\n";
- s << "\t " << PACKAGE_STRING << " built: " <<
- __DATE__ << ' ' << __TIME__ << '\n';
+ s << "\t " << PACKAGE_STRING << " built by FreeBSD ports\n";
s << "\t Copyright 1997-2016 SRI International\n";
s << "\t\t " << ctime(&secs);
}