avoid using echo -n since that fails on system v-infected systems,

instead using string concatenation


git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@9498 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Assar Westerlund
2001-01-25 13:07:41 +00:00
parent 7ff3f957b7
commit 2e56027910

View File

@@ -87,19 +87,21 @@ if test "$print_exec_prefix" = "yes"; then
fi fi
if test "$do_libs" = "yes"; then if test "$do_libs" = "yes"; then
echo -n "-L${libdir}" lib_flags="-L${libdir}"
case $library in case $library in
gssapi) gssapi)
echo -n " -lgssapi" lib_flags="$lib_flags -lgssapi"
;; ;;
kadm-client) kadm-client)
echo -n " -lkadm5clnt" lib_flags="$lib_flags -lkadm5clnt"
;; ;;
kadm-server) kadm-server)
echo -n " -lkadm5srv" lib_flags="$lib_flags -lkadm5srv"
;; ;;
esac esac
echo " -lkrb5 -lasn1 -ldes -lroken @LIB_crypt@ @LIB_dbopen@ @LIBS@" lib_flags="$lib_flags -lkrb5 -lasn1 -ldes -lroken"
lib_flags="$lib_flags @LIB_crypt@ @LIB_dbopen@ @LIBS@"
echo $lib_flags
fi fi
if test "$do_cflags" = "yes"; then if test "$do_cflags" = "yes"; then
echo "-I${includedir}" echo "-I${includedir}"