comparison Makefile @ 29373:0729bb8db99e v9.0.0029

patch 9.0.0029: the bitmaps/vim.ico file is not in the distribution Commit: https://github.com/vim/vim/commit/daaca8a1281ee610a308cd6209f81a06b3ae3a14 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Jul 2 17:58:23 2022 +0100 patch 9.0.0029: the bitmaps/vim.ico file is not in the distribution Problem: The bitmaps/vim.ico file is not in the distribution. Solution: Add it back to the distribution. Adjust the build rules to have it end up in the right place.
author Bram Moolenaar <Bram@vim.org>
date Sat, 02 Jul 2022 19:00:03 +0200
parents f8116058ca76
children 645722244c3f
comparison
equal deleted inserted replaced
29372:ff20e831e5b4 29373:0729bb8db99e
412 mkdir dist/vim 412 mkdir dist/vim
413 mkdir dist/vim/$(VIMRTDIR) 413 mkdir dist/vim/$(VIMRTDIR)
414 tar cf - \ 414 tar cf - \
415 $(SRC_ALL) \ 415 $(SRC_ALL) \
416 $(SRC_DOS) \ 416 $(SRC_DOS) \
417 $(SRC_DOS_BIN) \
417 $(SRC_AMI_DOS) \ 418 $(SRC_AMI_DOS) \
418 $(SRC_DOS_UNIX) \ 419 $(SRC_DOS_UNIX) \
419 runtime/doc/uganda.nsis.txt \ 420 runtime/doc/uganda.nsis.txt \
420 nsis/gvim_version.nsh \ 421 nsis/gvim_version.nsh \
421 | (cd dist/vim/$(VIMRTDIR); tar xf -) 422 | (cd dist/vim/$(VIMRTDIR); tar xf -)
422 mv dist/vim/$(VIMRTDIR)/runtime/* dist/vim/$(VIMRTDIR) 423 mv dist/vim/$(VIMRTDIR)/runtime/* dist/vim/$(VIMRTDIR)
423 rmdir dist/vim/$(VIMRTDIR)/runtime 424 rmdir dist/vim/$(VIMRTDIR)/runtime
424 # This file needs to be in dos fileformat for NSIS. 425 # This file needs to be in dos fileformat for NSIS.
425 $(VIM) -e -X -u no_title.vim -c ":set tx|wq" dist/vim/$(VIMRTDIR)/doc/uganda.nsis.txt 426 $(VIM) -e -X -u no_title.vim -c ":set tx|wq" dist/vim/$(VIMRTDIR)/doc/uganda.nsis.txt
426 tar cf - \
427 $(SRC_DOS_BIN) \
428 | (cd dist/vim/$(VIMRTDIR); tar xf -)
429 cd dist && zip -9 -rD -z vim$(VERSION)src.zip vim <$(COMMENT_SRC) 427 cd dist && zip -9 -rD -z vim$(VERSION)src.zip vim <$(COMMENT_SRC)
430 428
431 runtime/doc/uganda.nsis.txt: runtime/doc/uganda.txt 429 runtime/doc/uganda.nsis.txt: runtime/doc/uganda.txt
432 cd runtime/doc && $(MAKE) uganda.nsis.txt 430 cd runtime/doc && $(MAKE) uganda.nsis.txt
433 431