diff options
author | Tim Potter <tpot@samba.org> | 2003-09-29 06:07:30 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2003-09-29 06:07:30 +0000 |
commit | 64dbd7cbff3fa7a4e560571ec38207a7176e4646 (patch) | |
tree | 50c450abc388257dde0ec2706b8817c276f474ac | |
parent | 0a6295debd1db430b6db7fed8767ab6301d9359d (diff) | |
download | samba-64dbd7cbff3fa7a4e560571ec38207a7176e4646.tar.gz samba-64dbd7cbff3fa7a4e560571ec38207a7176e4646.tar.bz2 samba-64dbd7cbff3fa7a4e560571ec38207a7176e4646.zip |
Merge from 3.0:
>Change AC_CHECK_LIB_EXT to prepend libraries instead of append. This
>is the same way AC_CHECK_LIB works. Fix for bug 508.
>
>This may have to go a few rounds on the build farm to ensure it works
>everywhere.
(This used to be commit e2da7c8a9dc0e4c698c330422682feccae879bbd)
-rw-r--r-- | source3/aclocal.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/aclocal.m4 b/source3/aclocal.m4 index 52396e56d6..e1ea9385fd 100644 --- a/source3/aclocal.m4 +++ b/source3/aclocal.m4 @@ -179,7 +179,7 @@ AS_IF([test AS_VAR_GET(ac_Lib_ext) = yes], *-l$1*) ;; *) - $2="$$2 -l$1" + $2="-l$1 $$2" ;; esac]) [$6] |