Skip to content

Commit 2e7da2d

Browse files
committedAug 16, 2012
Inline AM_COND_IF for configure to work with ancient aclocal
1 parent dca17e1 commit 2e7da2d

File tree

1 file changed

+12
-4
lines changed

1 file changed

+12
-4
lines changed
 

‎configure.in

+12-4
Original file line numberDiff line numberDiff line change
@@ -3285,10 +3285,18 @@ fi
32853285
fi
32863286

32873287
default_profile=net_2_0
3288-
AM_COND_IF(INSTALL_4_0, default_profile=net_4_0)
3289-
AM_COND_IF(INSTALL_MONODROID, default_profile=monodroid)
3290-
AM_COND_IF(INSTALL_MONOTOUCH, default_profile=monotouch)
3291-
AM_COND_IF(INSTALL_4_5, default_profile=net_4_5)
3288+
if test -z "$INSTALL_4_0_TRUE"; then :
3289+
default_profile=net_4_0
3290+
fi
3291+
if test -z "$INSTALL_MONODROID_TRUE"; then :
3292+
default_profile=monodroid
3293+
fi
3294+
if test -z "$INSTALL_MONOTOUCH_TRUE"; then :
3295+
default_profile=monotouch
3296+
fi
3297+
if test -z "$INSTALL_4_5_TRUE"; then :
3298+
default_profile=net_4_5
3299+
fi
32923300

32933301
echo "DEFAULT_PROFILE = $default_profile" >> $srcdir/$mcsdir/build/config.make
32943302

0 commit comments

Comments
 (0)
Please sign in to comment.