view pixmaps/gen-inline-pixbufs.sh @ 13606:5a3146ceb318 v8.0.1675

patch 8.0.1675: unused macro argument in libvterm commit https://github.com/vim/vim/commit/820082914122d5bf7b6e89ff30cf364ad40a560f Author: Bram Moolenaar <Bram@vim.org> Date: Sun Apr 8 12:17:04 2018 +0200 patch 8.0.1675: unused macro argument in libvterm Problem: Unused macro argument in libvterm. (Randall W. Morris) Solution: Remove the argument.
author Christian Brabandt <cb@256bit.org>
date Sun, 08 Apr 2018 12:30:06 +0200
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