Bug 933231 - don't |unset| variables after configuring NSPR; r=ted

|unset|'ing these things causes them to not be exported to future configure's
(JS's, especially, in this context).  It's also completely unlike what we do
with other _SAVE-style variables elsewhere in configure.  Reassignment should
be enough.
This commit is contained in:
Nathan Froyd 2013-11-08 11:38:02 -05:00
parent 56d52732da
commit b143df746e

View File

@ -9127,9 +9127,6 @@ if test -z "$MOZ_NATIVE_NSPR"; then
AC_OUTPUT_SUBDIRS(nsprpub)
# .. and restore them
unset CFLAGS
unset CPPFLAGS
unset LDFLAGS
CFLAGS="$_SAVE_CFLAGS"
CPPFLAGS="$_SAVE_CPPFLAGS"
LDFLAGS="$_SAVE_LDFLAGS"