mirror of
				https://git.proxmox.com/git/grub2
				synced 2025-11-04 02:06:28 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			256 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			256 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#! /bin/sh
 | 
						|
 | 
						|
set -e
 | 
						|
 | 
						|
autoconf
 | 
						|
autoheader
 | 
						|
echo timestamp > stamp-h.in
 | 
						|
for rmk in conf/*.rmk ${GRUB_CONTRIB}/*/conf/*.rmk; do
 | 
						|
  if test -e $rmk ; then
 | 
						|
    ruby genmk.rb < $rmk > `echo $rmk | sed 's/\.rmk$/.mk/'`
 | 
						|
  fi
 | 
						|
done
 | 
						|
sh gendistlist.sh > DISTLIST
 | 
						|
 | 
						|
exit 0
 |