annotate pixmaps/gen-inline-pixbufs.sh @ 30645:101f08b49ed3 v9.0.0657

patch 9.0.0657: too many #ifdefs Commit: https://github.com/vim/vim/commit/7904fa420eb577274c4c3711295240100167d495 Author: Martin Tournoij <martin@arp242.net> Date: Tue Oct 4 16:28:45 2022 +0100 patch 9.0.0657: too many #ifdefs Problem: Too many #ifdefs. Solution: Graduate the +cmdwin feature. Now the tiny and small builds are equal, drop the small build. (Martin Tournoij, closes #11268)
author Bram Moolenaar <Bram@vim.org>
date Tue, 04 Oct 2022 17:30:06 +0200
parents d4faa2c5211b
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1 #! /bin/sh
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3 prefix=stock_
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4 list=
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5
25700
d4faa2c5211b Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 7
diff changeset
6 for file in "$@"; do
d4faa2c5211b Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 7
diff changeset
7 name=$(echo "$file" | sed 's|-|_|g; s|^.*/||; s|\..*$||')
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
8 list="$list $prefix$name $file"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
9 done
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
10
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
11 gdk-pixbuf-csource --raw --static --build-list $list