diff options
author | Gerald Carter <jerry@samba.org> | 2006-01-18 04:56:28 +0000 |
---|---|---|
committer | Gerald Carter <jerry@samba.org> | 2006-01-18 04:56:28 +0000 |
commit | 074a618416f9aebd125b7c2ce7121a8a98c2530d (patch) | |
tree | 79199c5377a055232fa79cff2107302c08fc78a2 /packaging/Solaris | |
parent | b3444d6c7591e3d10a0a7e5731de2efce58aa05f (diff) | |
download | samba-074a618416f9aebd125b7c2ce7121a8a98c2530d.tar.gz samba-074a618416f9aebd125b7c2ce7121a8a98c2530d.tar.xz samba-074a618416f9aebd125b7c2ce7121a8a98c2530d.zip |
r12991: some fixes for BUG 3331 - solaris packaging
Diffstat (limited to 'packaging/Solaris')
-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 |