Handle newer autotools. Add some missing quotes while on it.
* Makefile.am (pkglib_DATA): Remove update-grub_lib. (pkglib_DATA): Move grub-mkconfig_lib from here ... (pkgdata_DATA): ... here. * Makefile.util.def (update-grub_lib): Removed. * conf/Makefile.common (pkglib_DATA): Removed. (pkglib_SCRIPTS): Likewise. (pkgdata_DATA): New variable. * tests/util/grub-shell-tester.in: Replace pkglib with pkgdata where needed. Add missing quotes. Remove unused variable while on it. * tests/util/grub-shell.in: Likewise. * util/grub-install.in: Likewise. * util/grub-mkconfig.in: Likewise. * util/grub-mknetdir.in: Likewise. * util/grub-mkrescue.in: Likewise. * util/grub-mkstandalone.in: Likewise. * util/grub.d/00_header.in: Likewise. * util/grub.d/10_hurd.in: Likewise. * util/grub.d/10_illumos.in: Likewise. * util/grub.d/10_kfreebsd.in: Likewise. * util/grub.d/10_linux.in: Likewise. * util/grub.d/10_netbsd.in: Likewise. * util/grub.d/10_windows.in: Likewise. * util/grub.d/20_linux_xen.in: Likewise. * util/grub.d/30_os-prober.in: Likewise. * util/update-grub_lib.in: Removed.
This commit is contained in:
		
							parent
							
								
									e555f379be
								
							
						
					
					
						commit
						48b391e9ab
					
				
					 21 changed files with 151 additions and 157 deletions
				
			
		|  | @ -20,17 +20,16 @@ set -e | |||
| # Initialize some variables. | ||||
| transform="@program_transform_name@" | ||||
| 
 | ||||
| prefix=@prefix@ | ||||
| exec_prefix=@exec_prefix@ | ||||
| bindir=@bindir@ | ||||
| libdir=@libdir@ | ||||
| builddir=@builddir@ | ||||
| prefix="@prefix@" | ||||
| exec_prefix="@exec_prefix@" | ||||
| datarootdir="@datarootdir@" | ||||
| builddir="@builddir@" | ||||
| PACKAGE_NAME=@PACKAGE_NAME@ | ||||
| PACKAGE_TARNAME=@PACKAGE_TARNAME@ | ||||
| PACKAGE_VERSION=@PACKAGE_VERSION@ | ||||
| 
 | ||||
| # Force build directory components | ||||
| PATH=${builddir}:$PATH | ||||
| PATH="${builddir}:$PATH" | ||||
| export PATH | ||||
| 
 | ||||
| # Usage: usage | ||||
|  | @ -85,23 +84,23 @@ done | |||
| if [ "x${source}" = x ] ; then | ||||
|   tmpfile=`mktemp "${TMPDIR:-/tmp}/tmp.XXXXXXXXXX"` || exit 1 | ||||
|   while read REPLY; do | ||||
|     echo $REPLY >> ${tmpfile} | ||||
|     echo $REPLY >> "${tmpfile}" | ||||
|   done | ||||
|   source=${tmpfile} | ||||
|   source="${tmpfile}" | ||||
| fi | ||||
| 
 | ||||
| outfile1=`mktemp "${TMPDIR:-/tmp}/tmp.XXXXXXXXXX"` || exit 1 | ||||
| @builddir@/grub-shell --qemu-opts="${qemuopts}" --modules=${modules} ${source} >${outfile1} | ||||
| "@builddir@/grub-shell" --qemu-opts="${qemuopts}" --modules=${modules} "${source}" >"${outfile1}" | ||||
| 
 | ||||
| outfile2=`mktemp "${TMPDIR:-/tmp}/tmp.XXXXXXXXXX"` || exit 1 | ||||
| bash ${source} >${outfile2} | ||||
| bash "${source}" >"${outfile2}" | ||||
| 
 | ||||
| if ! diff -q ${outfile1} ${outfile2} >/dev/null | ||||
| if ! diff -q "${outfile1}" "${outfile2}" >/dev/null | ||||
| then | ||||
|   echo "${source}: GRUB and BASH outputs did not match (see diff -u ${outfile1} ${outfile2})" | ||||
|   status=1 | ||||
| else | ||||
|     rm -f ${outfile1} ${outfile2} | ||||
|     rm -f "${outfile1}" "${outfile2}" | ||||
| fi | ||||
| 
 | ||||
| exit $status | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue