configure: Fix naming of E profile configure variable.

Looks like a long standing bug to me as we are checking for E19_PROFILE in
e_config.c but assign the profile here to E18_PROFILE. It also shows us that
nobody is using the option(?) Found thanks to -Wundef.
This commit is contained in:
Stefan Schmidt 2014-09-09 10:29:34 +02:00
parent 827e66ba26
commit 01ce196efa
1 changed files with 1 additions and 1 deletions

View File

@ -624,7 +624,7 @@ AC_ARG_WITH(profile,
[profile=$withval])
AC_MSG_NOTICE([Enlightenment build profile set to $profile])
EDJE_DEF="-DLOWRES_PDA=1 -DMEDIUMRES_PDA=2 -DHIRES_PDA=3 -DSLOW_PC=4 -DMEDIUM_PC=5 -DFAST_PC=6"
EDJE_DEF=$EDJE_DEF" -DE18_PROFILE"=$profile
EDJE_DEF=$EDJE_DEF" -DE19_PROFILE"=$profile
AC_SUBST([EDJE_DEF])
AC_ARG_WITH(edje-cc,