Skip to content

Commit

Permalink
Fix in-tree --platform=none
Browse files Browse the repository at this point in the history
* configure.ac: Only remove include/grub/cpu and
include/grub/machine in the --platform=none case, not all of
include/grub.
  • Loading branch information
cjwatson committed Sep 25, 2014
1 parent 5d90f6e commit 77063f4
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
8 changes: 8 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
2014-09-25 Colin Watson <[email protected]>

Fix in-tree --platform=none

* configure.ac: Only remove include/grub/cpu and
include/grub/machine in the --platform=none case, not all of
include/grub.

2014-09-23 Colin Watson <[email protected]>

Add a new "none" platform that only builds utilities
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -1755,7 +1755,7 @@ if test "$platform" != none; then
else
# Just enough to stop the compiler failing with -I$(srcdir)/include.
mkdir -p include 2>/dev/null
rm -rf include/grub
rm -rf include/grub/cpu include/grub/machine
fi

AC_CONFIG_FILES([Makefile])
Expand Down

0 comments on commit 77063f4

Please sign in to comment.