Skip to content

Commit da7e6d4

Browse files
committed
Adds the AR env variable to config.nice
1 parent e767e61 commit da7e6d4

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

build/common.m4

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,15 @@ EOF
4040
if test -n "$LD"; then
4141
echo "LD=\"$LD\"; export LD" >> $1
4242
fi
43+
if test -n "$AR"; then
44+
echo "AR=\"$AR\"; export AR" >> $1
45+
fi
46+
if test -n "$RANLIB"; then
47+
echo "RANLIB=\"$RANLIB\"; export RANLIB" >> $1
48+
fi
49+
if test -n "NM"; then
50+
echo "NM=\"$NM\"; export NM" >> $1
51+
fi
4352
if test -n "$CFLAGS"; then
4453
echo "CFLAGS=\"$CFLAGS\"; export CFLAGS" >> $1
4554
fi

configure.ac

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2446,6 +2446,9 @@ AC_MSG_NOTICE([Build option summary:
24462446
CXX: $CXX
24472447
CPP: $CPP
24482448
LD: $LD
2449+
AR: $AR
2450+
RANLIB: $RANLIB
2451+
NM: $NM
24492452
CFLAGS: $CFLAGS
24502453
CXXFLAGS: $CXXFLAGS
24512454
CPPFLAGS: $CPPFLAGS

0 commit comments

Comments
 (0)