diff options
author | Michael Adam <obnox@samba.org> | 2008-02-19 15:58:02 +0100 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2008-02-19 17:39:39 +0100 |
commit | 1f67a36de36be9fe0218816675af4d96c194ad39 (patch) | |
tree | 2273b98c003d61f8411b7718bb2337e84ffef753 | |
parent | 6fa31c53641a7caeb82627fd35b604775abfdf14 (diff) | |
download | samba-1f67a36de36be9fe0218816675af4d96c194ad39.tar.gz samba-1f67a36de36be9fe0218816675af4d96c194ad39.tar.bz2 samba-1f67a36de36be9fe0218816675af4d96c194ad39.zip |
configure.in: move definition of build dir up.
Michael
(This used to be commit 35327e8fee778cb46e181add7d1987c843384989)
-rw-r--r-- | source3/configure.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source3/configure.in b/source3/configure.in index f1bd2d28a5..0409e164eb 100644 --- a/source3/configure.in +++ b/source3/configure.in @@ -15,6 +15,9 @@ case "$PATH" in ;; esac +builddir=`pwd` +AC_SUBST(builddir) + SMB_VERSION_STRING=`cat $srcdir/include/version.h | grep 'SAMBA_VERSION_OFFICIAL_STRING' | cut -d '"' -f2` echo "SAMBA VERSION: ${SMB_VERSION_STRING}" @@ -6826,9 +6829,6 @@ if test x"$krb5_developer" = x"yes" -o x"$developer" = x"yes"; then CFLAGS="${CFLAGS} \$(DEVELOPER_CFLAGS)" fi -builddir=`pwd` -AC_SUBST(builddir) - # Stuff the smbd-only libraries at the end of the smbd link # path (if we have them). SMBD_LIBS="$samba_dmapi_libs" |