Skip to content
Snippets Groups Projects
Commit 07eee8a2 authored by mcafee%netscape.com's avatar mcafee%netscape.com
Browse files

moving OBJDIR to use config.guess

parent 155d6915
No related branches found
No related tags found
No related merge requests found
......@@ -76,12 +76,15 @@ checkout:
# Build with autoconf
build:
PWD=`pwd`
(cd mozilla; $(AUTOCONF))
if test ! -d mozilla/$(OBJDIR); then rm -rf mozilla/$(@OBJDIR); mkdir -D mozilla/$(OBJDIR); else true; fi
(cd mozilla/$(OBJDIR); ../configure --with-nspr=$(NSPR_INSTALL_DIR) --enable-toolkit=$(MOZ_TOOLKIT))
(cd mozilla/$(OBJDIR); gmake depend)
(cd mozilla/$(OBJDIR); gmake)
pwd=`pwd`; \
echo pwd = $$pwd; \
autoobjdir=obj-$(shell mozilla/build/autoconf/config.guess); \
echo autoobjdir = $$autoobjdir; \
(cd mozilla; $(AUTOCONF)); \
if test ! -d mozilla/$$autoobjdir; then $(MKDIR) mozilla/$$autoobjdir; fi; \
(cd mozilla/$$autoobjdir; ../configure --with-nspr=$(NSPR_INSTALL_DIR) --enable-toolkit=$(MOZ_TOOLKIT))
(cd mozilla/$$autoobjdir; gmake depend)
(cd mozilla/$$autoobjdir; gmake)
# Do an autoconf build, this isn't working yet. -mcafee
#
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment