view pixmaps/gen-inline-pixbufs.sh @ 21817:c2c2e57562ee v8.2.1458

patch 8.2.1458: .gawk files not recognized Commit: https://github.com/vim/vim/commit/9a5c553f790f74e4c36295ce5d46c1aa7d13eae6 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Aug 15 14:07:23 2020 +0200 patch 8.2.1458: .gawk files not recognized Problem: .gawk files not recognized. Solution: Recognize .gawk files. (Doug Kearns)
author Bram Moolenaar <Bram@vim.org>
date Sat, 15 Aug 2020 14:15:07 +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