I have a recipe in which I want to set a unique value for `JAVA_HOME`. I have the following code: ``` class Package < FPM::Cookery::Recipe ... def build environment['JAVA_HOME'] = '/usr/lib/jvm/openjdk-8-jdk' configure end ... end ``` However, during the `configure` phase, the build does not see the aforementioned JAVA_HOME value.