view pixmaps/gen-inline-pixbufs.sh @ 32305:2567501acf48 v9.0.1484

patch 9.0.1484: Coverity warns for using invalid array index Commit: https://github.com/vim/vim/commit/e1b4822137b74d45fde1d47d2e32b3ae89966092 Author: Bram Moolenaar <Bram@vim.org> Date: Mon Apr 24 18:11:35 2023 +0100 patch 9.0.1484: Coverity warns for using invalid array index Problem: Coverity warns for using invalid array index. Solution: Add entry for Xchacha, even though it is not used.
author Bram Moolenaar <Bram@vim.org>
date Mon, 24 Apr 2023 19:15:03 +0200
parents d4faa2c5211b
children
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