view pixmaps/gen-inline-pixbufs.sh @ 15322:c6c306c5027f v8.1.0669

patch 8.1.0669: the ex_sign() function is too long commit https://github.com/vim/vim/commit/a355652ea5b0c1633e8126ad9af2d970e05f4e1a Author: Bram Moolenaar <Bram@vim.org> Date: Mon Dec 31 22:02:29 2018 +0100 patch 8.1.0669: the ex_sign() function is too long Problem: The ex_sign() function is too long. Solution: Refactor the function. Add a bit more testing. (Yegappan Lakshmanan, closes #3745)
author Bram Moolenaar <Bram@vim.org>
date Mon, 31 Dec 2018 22:15:06 +0100
parents 3fc0f57ecb91
children d4faa2c5211b
line wrap: on
line source

#! /bin/sh

prefix=stock_
list=

for file in "$@"
do
    name=`echo "$file" | sed 's|-|_|g; s|^.*/||; s|\..*$||'`
    list="$list $prefix$name $file"
done

gdk-pixbuf-csource --raw --static --build-list $list