mirror of
https://git.proxmox.com/git/grub2
synced 2025-05-18 04:00:37 +00:00

This prevents autoheader from being rerun by make if somebody changes configure.ac or aclocal.m4 and runs autogen.sh. Suggested by Christian Franke <Christian.Franke@t-online.de>
13 lines
166 B
Bash
13 lines
166 B
Bash
#! /bin/sh
|
|
|
|
set -e
|
|
|
|
autoconf
|
|
autoheader
|
|
echo timestamp > stamp-h.in
|
|
for rmk in conf/*.rmk; do
|
|
ruby genmk.rb < $rmk > `echo $rmk | sed 's/\.rmk$/.mk/'`
|
|
done
|
|
|
|
exit 0
|