view pixmaps/gen-inline-pixbufs.sh @ 16421:405c5cbf8051 v8.1.1215

patch 8.1.1215: "make clean" does not remove generated src/po files commit https://github.com/vim/vim/commit/49543fbcedb19a1db0d2144737efc0266057ff1d Author: Bram Moolenaar <Bram@vim.org> Date: Sat Apr 27 18:32:31 2019 +0200 patch 8.1.1215: "make clean" does not remove generated src/po files Problem: "make clean" does not remove generated src/po files. Solution: Remove the files for "make clean". (Christian Brabandt)
author Bram Moolenaar <Bram@vim.org>
date Sat, 27 Apr 2019 18:45:04 +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