Better stripping of prefix for Solaris package install needs to remove

/usr/local as package installs there by default


git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@460 f882894a-f735-0410-b71e-b25c423dba1c
This commit is contained in:
Jeremy T. Bouse 2003-03-24 19:05:14 +00:00
parent ed1fda6bd9
commit a0d3b87337
2 changed files with 3 additions and 2 deletions

View file

@ -9,7 +9,7 @@ command.cfg
Cache.pm
build-*
aclocal.m4
autom4te-*.cache
autom4te*.cache
install-sh
mkinstalldirs
missing

View file

@ -21,13 +21,14 @@ nagios-plugins.spec: nagios-plugins.spec.in
BUILDDIR := $(shell pwd)/build-solaris
PACKDIR := $(shell pwd)/build-pkg
PKGSCRIPT := $(shell pwd)/pkg/solaris/solpkg
PKGPFX := $(shell echo ${prefix} |sed -e 's@^/usr/local@@')
VERSION=@PACKAGE_VERSION@
solpkg:
if [ ! -d $(BUILDDIR) ] ; then mkdir $(BUILDDIR); fi
if [ ! -d $(PACKDIR) ] ; then mkdir $(PACKDIR); fi
$(MAKE) all
$(MAKE) DESTDIR=$(BUILDDIR) prefix=/ install
$(MAKE) DESTDIR=$(BUILDDIR) prefix=$(PKGPFX) install
$(INSTALL) pkg/solaris/pkginfo $(BUILDDIR)
cd $(BUILDDIR) && $(PERL) $(PKGSCRIPT) $(PACKDIR)