diff options
author | Tim Potter <tpot@samba.org> | 2005-11-14 23:09:46 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 11:05:25 -0500 |
commit | bc5921d40e6a8f567c09dbb8a45d49afa98758ac (patch) | |
tree | 394d33add1de66282ee1875866ba1c34a93d4094 | |
parent | ba2edc38aa6bce492817b395f196d3d2f2f0bda9 (diff) | |
download | samba-bc5921d40e6a8f567c09dbb8a45d49afa98758ac.tar.gz samba-bc5921d40e6a8f567c09dbb8a45d49afa98758ac.tar.bz2 samba-bc5921d40e6a8f567c09dbb8a45d49afa98758ac.zip |
r11729: Remove space from DYNEXP flags declaration for HPUX. Fixes bugzilla
#3260.
(This used to be commit 78ddbb1dd4fd90ef5e3aee1fe42fdc0e3105c800)
-rw-r--r-- | source3/configure.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/configure.in b/source3/configure.in index eb1974ccf7..f31f26f07b 100644 --- a/source3/configure.in +++ b/source3/configure.in @@ -1480,10 +1480,10 @@ if test "$enable_shared" = "yes"; then fi if test "$host_cpu" = "ia64"; then SHLIBEXT="so" - DYNEXP="-Wl,-E,+b /usr/local/lib/hpux32:/usr/lib/hpux32" + DYNEXP="-Wl,-E,+b/usr/local/lib/hpux32:/usr/lib/hpux32" else SHLIBEXT="sl" - DYNEXP="-Wl,-E,+b /usr/local/lib:/usr/lib" + DYNEXP="-Wl,-E,+b/usr/local/lib:/usr/lib" fi AC_DEFINE(STAT_ST_BLOCKSIZE,8192,[The size of a block]) AC_DEFINE(POSIX_ACL_NEEDS_MASK,1,[Does a POSIX ACL need a mask element]) |