mirror of
https://git.proxmox.com/git/grub2
synced 2025-05-17 20:02:19 +00:00
12 lines
138 B
Bash
12 lines
138 B
Bash
#! /bin/sh
|
|
|
|
set -e
|
|
|
|
autoconf
|
|
autoheader
|
|
for rmk in conf/*.rmk; do
|
|
ruby genmk.rb < $rmk > `echo $rmk | sed 's/\.rmk$/.mk/'`
|
|
done
|
|
|
|
exit 0
|