diff options
author | Blue Swirl <blauwirbel@gmail.com> | 2011-11-01 20:59:32 +0000 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2011-11-01 20:59:32 +0000 |
commit | 7f7623662781fa152c5aa39fd63a2e8766516a2c (patch) | |
tree | ff13e7b82356875ea731be84e3685e27d0dfc1c8 /configure | |
parent | e927dab1fda0eee41fa5fe51ae98293f66a86db1 (diff) |
Revert "PPC: Fail configure when libfdt is not available"
This reverts commit f90a9d02401eeeec18a122b61ccccb91244f321c.
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 11 |
1 files changed, 1 insertions, 10 deletions
@@ -3454,16 +3454,7 @@ case "$target_arch2" in fi fi esac -if test "$fdt" != "yes" && test "$target_arch2" = "ppc" -o \ - "$target_arch2" = "ppc64" -o "$target_arch2" = "ppcemb"; then - echo - echo "Error: libfdt missing" - echo "The PowerPC target requires libfdt to work properly." - echo "Please make sure to have it and its development packages installed." - echo - exit 1 -fi -if test "$target_arch2" = "ppc64"; then +if test "$target_arch2" = "ppc64" -a "$fdt" = "yes"; then echo "CONFIG_PSERIES=y" >> $config_target_mak fi if test "$target_bigendian" = "yes" ; then |