Patch from Thomas Beierlein, DL1JBE, to fix parallel make, i.e.

`make -jN'.


git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2561 7ae35d74-ebe9-4afe-98af-79ac388436b8
Hamlib-1.2.9
Nate Bargmann, N0NB 2009-01-05 12:16:47 +00:00
rodzic bdd0bf3e25
commit aa4a2fef88
1 zmienionych plików z 12 dodań i 2 usunięć

Wyświetl plik

@ -419,6 +419,18 @@ else
fi
AC_MSG_RESULT($cf_with_libusb)
# prepare backend dependencies before adding rpcrig and rpcrot dirs
# otherwise parallel 'make -jn' will fail
for be in ${BACKEND_LIST} ; do
BACKENDEPS="${BACKENDEPS} \$(top_builddir)/${be}/hamlib-${be}.la"
done
# prepare backend dependencies before adding rpcrig and rpcrot dirs
# otherwise parallel 'make -jn' will fail
for be in ${ROT_BACKEND_LIST} ; do
ROT_BACKENDEPS="${ROT_BACKENDEPS} \$(top_builddir)/${be}/hamlib-${be}.la"
done
AC_CHECK_PROG(cf_with_rpcgen, rpcgen, [yes], [no])
AC_MSG_CHECKING(whether to build rpc backends)
@ -443,7 +455,6 @@ fi
BACKENDLNK="-dlopen force"
for be in ${BACKEND_LIST} ; do
BACKENDLNK="${BACKENDLNK} -dlopen \$(top_builddir)/${be}/hamlib-${be}.la"
BACKENDEPS="${BACKENDEPS} \$(top_builddir)/${be}/hamlib-${be}.la"
done
AC_SUBST(BACKEND_LIST)
AC_SUBST(BACKENDLNK)
@ -453,7 +464,6 @@ AC_SUBST(BACKENDEPS)
ROT_BACKENDLNK="-dlopen force"
for be in ${ROT_BACKEND_LIST} ; do
ROT_BACKENDLNK="${ROT_BACKENDLNK} -dlopen \$(top_builddir)/${be}/hamlib-${be}.la"
ROT_BACKENDEPS="${ROT_BACKENDEPS} \$(top_builddir)/${be}/hamlib-${be}.la"
done
AC_SUBST(ROT_BACKEND_LIST)
AC_SUBST(ROT_BACKENDLNK)