Displaying 4 results from an estimated 4 matches for "install_base".
2005 Oct 15
1
makepkg.sh for samba 3.0.20
...a \
Add:
====
--localstatedir=/usr/local/samba/lib \
--with-piddir=/var/run \
--with-logfilebase=/usr/local/samba/var/log \
--with-privatedir=/usr/local/samba/private \
--with-configdir=/usr/local/samba/lib \
Replaced INSTALL_BASE=/opt/samba with INSTALL_BASE=/usr/local/samba
makepkg.sh completed with no error. However pkgadd gives me the
following errors:
# pkgadd -d . samba
Processing package instance <samba> from </tmp>
CIFS File and Print server
(sparc) 3.0.20
Copyright (C) 2001 Samba Team
Using </usr/...
2001 Oct 03
3
samba on solaris 8
any body had any issues with samba on solaris8 ( sparc )
which version is advisable
thanks
2010 Jan 20
2
perl updates always break perl programs, how to fix?
I realize this is my fault because once upon a time I installed a package
using CPAN and probably other admins on the system have as well but now
whenever I update perl I have to jump through hoops to get perl applications
to work again (usually updating Scalar::Util and another package with CPAN).
I would love to figure out how to fix this so it's not such a headache to
keep up to date with
2011 Feb 11
1
[PATCH v2v] Add support for performing automated builds
...by the Free
+# Software Foundation; either version 2, or (at your option) any
+# later version
+#
+# The file "LICENSE" distributed along with this file provides full
+# details of the terms and conditions
+#
+
+NAME=virt-v2v
+
+set -e
+
+rm -rf MANIFEST blib _build Build
+
+perl Build.PL install_base=$AUTOBUILD_INSTALL_ROOT
+
+./Build
+./Build changelog
+./Build manifest
+
+
+if [ -z "$USE_COVER" ]; then
+ perl -MDevel::Cover -e '' 1>/dev/null 2>&1 && USE_COVER=1 || USE_COVER=0
+fi
+
+if [ -z "$SKIP_TESTS" -o "$SKIP_TESTS" = "0"...