~ubuntu-branches/ubuntu/saucy/sbsigntool/saucy

« back to all changes in this revision

Viewing changes to configure.ac

  • Committer: Package Import Robot
  • Author(s): Adam Conrad
  • Date: 2012-10-02 07:44:59 UTC
  • Revision ID: package-import@ubuntu.com-20121002074459-hggsoyhvhcw653j5
Tags: 0.4-0ubuntu2
Fix FTBFS on i386 by defining EFI_ARCH to ia32 instead of uname.

Show diffs side-by-side

added added

removed removed

Lines of Context:
65
65
 
66
66
dnl gnu-efi headers require extra include dirs
67
67
EFI_ARCH=$(uname -m)
 
68
case $EFI_ARCH in
 
69
        i*86)
 
70
                EFI_ARCH="ia32"
 
71
                ;;
 
72
esac
68
73
EFI_CPPFLAGS="-I/usr/include/efi -I/usr/include/efi/$EFI_ARCH \
69
74
 -DEFI_FUNCTION_WRAPPER"
70
75
CPPFLAGS_save="$CPPFLAGS"