Skip to content

Commit

Permalink
Fix packaging for Win32 and macOS
Browse files Browse the repository at this point in the history
  • Loading branch information
jbkempf committed Apr 25, 2021
1 parent 6ec8c0e commit 6183c9a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion extras/package/macosx/package.mak
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ package-macosx-zip: VLC.app
rm -f "$(top_builddir)/vlc-$(VERSION).zip"
mkdir -p $(top_builddir)/vlc-$(VERSION)/Goodies/
cp -Rp $(top_builddir)/VLC.app $(top_builddir)/vlc-$(VERSION)/VLC.app
cd $(srcdir); cp -R AUTHORS COPYING README THANKS NEWS $(abs_top_builddir)/vlc-$(VERSION)/Goodies/
cd $(srcdir); cp -R AUTHORS COPYING README.md THANKS NEWS $(abs_top_builddir)/vlc-$(VERSION)/Goodies/
zip -r -y -9 $(top_builddir)/vlc-$(VERSION).zip $(top_builddir)/vlc-$(VERSION)
rm -rf "$(top_builddir)/vlc-$(VERSION)"

Expand Down
2 changes: 1 addition & 1 deletion extras/package/win32/package.mak
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ endif
for file in AUTHORS THANKS ; \
do sed 's/@/_AT_/' < "$(srcdir)/$$file" > "$(win32_destdir)/$${file}.txt"; \
done
for file in NEWS COPYING README; \
for file in NEWS COPYING README.md; \
do cp "$(srcdir)/$$file" "$(win32_destdir)/$${file}.txt"; \
done

Expand Down

0 comments on commit 6183c9a

Please sign in to comment.