copy MIT and Apache license files in place on install

This commit is contained in:
Matthew Flatt 2019-11-12 20:15:54 -07:00
parent 52b01ef88b
commit ea7452a3ed
3 changed files with 12 additions and 0 deletions

View File

@ -44,6 +44,8 @@ ALLDIRINFO = "$(DESTDIR)$(bindir)" \
"$(DESTDIR)$(mandir)"
COPYING = "$(srcdir)/LICENSE-libscheme.txt" \
"$(srcdir)/LICENSE-MIT.txt" \
"$(srcdir)/LICENSE-APACHE.txt" \
"$(srcdir)/LICENSE-LGPL.txt" \
"$(srcdir)/LICENSE-GPL.txt"

View File

@ -73,6 +73,10 @@ cd ..
copy ..\LICENSE-libscheme.txt ..\..\share\
if errorlevel 1 exit /B 1
copy ..\LICENSE-MIT.txt ..\..\share\
if errorlevel 1 exit /B 1
copy ..\LICENSE-APACHE.txt ..\..\share\
if errorlevel 1 exit /B 1
copy ..\LICENSE-LGPL.txt ..\..\share\
if errorlevel 1 exit /B 1
copy ..\LICENSE-GPL.txt ..\..\share\

View File

@ -295,6 +295,12 @@
(copy-file "../LICENSE-libscheme.txt"
"../../share/LICENSE-libscheme.txt"
#t)
(copy-file "../LICENSE-MIT.txt"
"../../share/LICENSE-MIT.txt"
#t)
(copy-file "../LICENSE-APACHE.txt"
"../../share/LICENSE-APACHE.txt"
#t)
(copy-file "../LICENSE-LGPL.txt"
"../../share/LICENSE-LGPL.txt"
#t)