view pixmaps/gen-inline-pixbufs.sh @ 15707:be41b51f69c7 v8.1.0861

patch 8.1.0861: building with MinGW and static libc doesn't work commit https://github.com/vim/vim/commit/60f807b3f71a92881e2b3bf48bd016294957130e Author: Bram Moolenaar <Bram@vim.org> Date: Thu Jan 31 14:43:19 2019 +0100 patch 8.1.0861: building with MinGW and static libc doesn't work Problem: Building with MinGW and static libc doesn't work. Solution: Change the LIB argument. (Ken Takata)
author Bram Moolenaar <Bram@vim.org>
date Thu, 31 Jan 2019 14:45:06 +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