view pixmaps/gen-inline-pixbufs.sh @ 15156:b63787182765 v8.1.0588

patch 8.1.0588: cannot define a sign with space in the text commit https://github.com/vim/vim/commit/06b056e110005ce0dd97b8c6333405afd06c36fc Author: Bram Moolenaar <Bram@vim.org> Date: Fri Dec 14 19:37:08 2018 +0100 patch 8.1.0588: cannot define a sign with space in the text Problem: Cannot define a sign with space in the text. Solution: Allow for escaping characters. (Ben Jackson, closes https://github.com/vim/vim/issues/2967)
author Bram Moolenaar <Bram@vim.org>
date Fri, 14 Dec 2018 19:45:05 +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