diff options
author | Björn Gustavsson <[email protected]> | 2009-12-02 21:00:22 +0100 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2009-12-09 19:45:27 +0100 |
commit | 47bd30c0efd50af2f297c8f016ca80b08855592f (patch) | |
tree | dcca139695529ae0566fe77778b6070584ab9cfe /erts/emulator/utils | |
parent | 12ce303085dc29d4401b167e6d57d5144c934f8f (diff) | |
download | otp-47bd30c0efd50af2f297c8f016ca80b08855592f.tar.gz otp-47bd30c0efd50af2f297c8f016ca80b08855592f.tar.bz2 otp-47bd30c0efd50af2f297c8f016ca80b08855592f.zip |
beam_makepos: Do not put any dates in generated files
We don't want to have dates in files that are checked-in as
part of the bootstrap compiler (such as beam_opcodes.{erl,hrl})
as a new version will be created every time.
Diffstat (limited to 'erts/emulator/utils')
-rwxr-xr-x | erts/emulator/utils/beam_makeops | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/erts/emulator/utils/beam_makeops b/erts/emulator/utils/beam_makeops index 2b7e8a6dde..4a859c3094 100755 --- a/erts/emulator/utils/beam_makeops +++ b/erts/emulator/utils/beam_makeops @@ -753,8 +753,8 @@ sub comment { print "$prefix$line\n"; } } else { - print "$prefix Warning: Do not edit this file. It was automatically\n"; - print "$prefix generated by '$prog' on ", (scalar localtime), ".\n"; + print "$prefix Warning: Do not edit this file.\n"; + print "$prefix Auto-generated by '$prog'.\n"; } if ($lang eq 'C') { print " */\n"; |