From 7d432b263b3228e77c858f36b124004fbf4101e3 Mon Sep 17 00:00:00 2001 From: "seawood%netscape.com" Date: Sat, 6 Oct 2001 20:01:12 +0000 Subject: [PATCH] Change --enable-modules to --enable-standalone-modules to make it more descript. Bug #99807 r=jag git-svn-id: svn://10.0.0.236/trunk@104745 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/configure.in | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/mozilla/configure.in b/mozilla/configure.in index 89da8fb95f2..ac10f895e75 100644 --- a/mozilla/configure.in +++ b/mozilla/configure.in @@ -3058,15 +3058,22 @@ dnl ======================================================== dnl ======================================================== dnl = -dnl = --enable-modules=mod1,mod2 +dnl = --enable-standalone-modules=mod1,mod2 dnl = dnl = Only selectively build modules dnl = dnl ======================================================== BUILD_MODULES=all -MOZ_ARG_ENABLE_STRING(modules, -[ --enable-modules Enable standalone build of specific modules], +MOZ_ARG_ENABLE_STRING(standalone-modules, +[ --enable-standalone-modules=mod1[,mod2] + Enable standalone build of specific modules], [ BUILD_MODULES=`echo $enableval | sed 's/,/ /g'` ] ) + +dnl Temp. also check old --enable-modules option +if test "${BUILD_MODULES}" = "all" && test -n "$enable_modules"; then + BUILD_MODULES=`echo $enable_modules | sed 's/,/ /g'` +fi + dnl ========================================================