diff options
author | Richard Sharpe <sharpe@samba.org> | 2001-07-12 07:23:14 +0000 |
---|---|---|
committer | Richard Sharpe <sharpe@samba.org> | 2001-07-12 07:23:14 +0000 |
commit | 4f366689499bf32dcfe6d102410b4b2cde94758c (patch) | |
tree | aa6e53cc9c5126320d30b2544e94dfdae706d28c | |
parent | 1f9a689f1fe3adb91970b7b3aa962d96451a4e1e (diff) | |
download | samba-4f366689499bf32dcfe6d102410b4b2cde94758c.tar.gz samba-4f366689499bf32dcfe6d102410b4b2cde94758c.tar.bz2 samba-4f366689499bf32dcfe6d102410b4b2cde94758c.zip |
Fix a stupid error in passing options to CC under AIX
(This used to be commit b8b5603e0f789014a1237c358db478cf6211e215)
-rw-r--r-- | source3/configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/configure.in b/source3/configure.in index 1bf8576097..721cdd93c2 100644 --- a/source3/configure.in +++ b/source3/configure.in @@ -645,7 +645,7 @@ case "$host_os" in *aix*) AC_DEFINE(AIX) BLDSHARED="true" LDSHFLAGS="-Wl,-bexpall,-bM:SRE,-bnoentry" - PICFLAG="=O2 -qmaxmem=6000" + PICFLAG="-O2 -qmaxmem=6000" ;; *hpux*) AC_DEFINE(HPUX) SHLIBEXT="sl" |