Skip to content

Commit

Permalink
fixed welcome text and copyright year in macOS package
Browse files Browse the repository at this point in the history
  • Loading branch information
Bob Burger committed Mar 25, 2019
1 parent 87f59b3 commit 3007652
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 4 deletions.
2 changes: 2 additions & 0 deletions LOG
Original file line number Diff line number Diff line change
Expand Up @@ -1243,3 +1243,5 @@
bintar/Makefile rpm/Makefile pkg/Makefile wininstall/Makefile
wininstall/a6nt.wxs wininstall/i3nt.wxs wininstall/ta6nt.wxs
wininstall/ti3nt.wxs
- fixed welcome text and copyright year in macOS package
newrelease pkg/Makefile release_notes.stex
4 changes: 3 additions & 1 deletion newrelease
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,9 @@ sed -e "s/^version = .*/version = $R/" ../rpm/Makefile > rpm/Makefile
set updatedfiles = ($updatedfiles rpm/Makefile)

/bin/rm pkg/Makefile
sed -e "s/^version = .*/version = $R/" ../pkg/Makefile > pkg/Makefile
sed -e "s/^version = .*/version = $R/" \
-e "s/© .* Cisco Systems/\© `date +%Y` Cisco Systems/" \
../pkg/Makefile > pkg/Makefile
set updatedfiles = ($updatedfiles pkg/Makefile)

mkdir wininstall
Expand Down
5 changes: 2 additions & 3 deletions pkg/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -75,10 +75,9 @@ $(BUILDROOT)/Distribution: $(BUILDROOT)
chmod 644 $(BUILDROOT)/Distribution

$(BUILDROOT)/Resources/en.lproj/Welcome.html: $(BUILDROOT)/Resources/en.lproj
echo 'cat << EOF > $(RESOURCES)/en.lproj/Welcome.html' >> $(BUILDROOT)/Resources/en.lproj/Welcome.html
echo '<html>' >> $(BUILDROOT)/Resources/en.lproj/Welcome.html
echo '<html>' > $(BUILDROOT)/Resources/en.lproj/Welcome.html
echo '<h3>Chez Scheme Version $(version)</h3>' >> $(BUILDROOT)/Resources/en.lproj/Welcome.html
echo '<p>Copyright (c) 2017 Cisco Systems, Inc.</p>' >> $(BUILDROOT)/Resources/en.lproj/Welcome.html
echo '<p>Copyright &copy; 2019 Cisco Systems, Inc.</p>' >> $(BUILDROOT)/Resources/en.lproj/Welcome.html
echo '<p>Chez Scheme is a programming language and an implementation of that language, with supporting tools and documentation.</p>' >> $(BUILDROOT)/Resources/en.lproj/Welcome.html
echo '</html>' >> $(BUILDROOT)/Resources/en.lproj/Welcome.html
chmod 644 $(BUILDROOT)/Resources/en.lproj/Welcome.html
Expand Down
5 changes: 5 additions & 0 deletions release_notes/release_notes.stex
Original file line number Diff line number Diff line change
Expand Up @@ -1663,6 +1663,11 @@ in fasl files does not generally make sense.
%-----------------------------------------------------------------------------
\section{Bug Fixes}\label{section:bugfixes}

\subsection{Welcome text in macOS package file (9.5.2)}

The welcome text and copyright year in the macOS package file was
corrected.

\subsection{Fasl representation change for recursive ftypes (9.5.2)}

A bug in the reading of mutually recursive ftype definitions from
Expand Down

0 comments on commit 3007652

Please sign in to comment.