Skip to content

Commit

Permalink
2009-12-21 Felix Zielcke <fzielcke@z-51.de>
Browse files Browse the repository at this point in the history
	* util/grub-mkrescue.in: (process_input_dir): Copy `*.lst' files
	instead of specifying them explicit.
  • Loading branch information
fezie committed Dec 21, 2009
1 parent 7922f68 commit 4dd1322
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
5 changes: 5 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
2009-12-21 Felix Zielcke <fzielcke@z-51.de>

* util/grub-mkrescue.in: (process_input_dir): Copy `*.lst' files
instead of specifying them explicit.

2009-12-21 Robert Millan <rmh.grub@aybabtu.com>

* NEWS: Add grub-probe support for GNU/Hurd.
Expand Down
3 changes: 1 addition & 2 deletions util/grub-mkrescue.in
Original file line number Diff line number Diff line change
Expand Up @@ -94,8 +94,7 @@ process_input_dir ()
platform="$2"
mkdir -p ${iso9660_dir}/boot/grub/${target_cpu}-${platform}
for file in ${input_dir}/*.mod ${input_dir}/efiemu??.o \
${input_dir}/command.lst ${input_dir}/moddep.lst ${input_dir}/fs.lst \
${input_dir}/handler.lst ${input_dir}/parttool.lst; do
${input_dir}/*.lst; do
if test -f "$file"; then
cp -f "$file" ${iso9660_dir}/boot/grub/${target_cpu}-${platform}/
fi
Expand Down

0 comments on commit 4dd1322

Please sign in to comment.