Skip to content

Commit 840b361

Browse files
committed
configure: hint that gmake should be used on BSD
1 parent 9f8db92 commit 840b361

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

configure

+3-1
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,7 @@ echo bindir=$bindir>>config.mak
8989
echo libdir=$libdir>>config.mak
9090
echo includedir=$includedir>>config.mak
9191
echo sysconfdir=$sysconfdir>>config.mak
92+
make_cmd=make
9293
if ismac ; then
9394
echo NO_AS_NEEDED=>>config.mak
9495
echo LDSO_SUFFIX=dylib>>config.mak
@@ -102,6 +103,7 @@ if ismac ; then
102103
elif isbsd ; then
103104
echo LIBDL=>>config.mak
104105
echo "CFLAGS+=-DIS_BSD">>config.mak
106+
make_cmd=gmake
105107
fi
106108

107-
echo "Done, now run make && make install"
109+
echo "Done, now run $make_cmd && $make_cmd install"

0 commit comments

Comments
 (0)