diff options
author | Gerald Carter <jerry@samba.org> | 2006-01-18 04:56:28 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 11:06:10 -0500 |
commit | b334052108f58cc71898ec0b4b745da1f9d53bec (patch) | |
tree | 79199c5377a055232fa79cff2107302c08fc78a2 /packaging | |
parent | 19339a9510467b4b2cf3889bc6a08563cdc940f4 (diff) | |
download | samba-b334052108f58cc71898ec0b4b745da1f9d53bec.tar.gz |
r12991: some fixes for BUG 3331 - solaris packaging
Diffstat (limited to 'packaging')
-rw-r--r-- | packaging/Solaris/makepkg.sh | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/packaging/Solaris/makepkg.sh b/packaging/Solaris/makepkg.sh index 2d599fca9b7..18e9f00f84a 100644 --- a/packaging/Solaris/makepkg.sh +++ b/packaging/Solaris/makepkg.sh @@ -128,15 +128,16 @@ echo "Install directory: $INSTALL_BASE" cd $DISTR_BASE/source -if [ "x$1" != "xnobuild" ]; then +if test "x$1" = "xbuild" ]; then ./configure --prefix=$INSTALL_BASE \ - --with-acl-support \ - --with-included-popt \ --localstatedir=/var/lib/samba \ --with-piddir=/var/run \ --with-logfilebase=/var/log/samba \ --with-privatedir=/etc/samba/private \ --with-configdir=/etc/samba \ + --with-lockdir=/var/lib/samba \ + --with-pam --with-acl-support \ + --with-quotas --with-included-popt \ && make if [ $? -ne 0 ]; then |