From: oetiker Date: Sat, 11 Jun 2005 06:14:25 +0000 (+0000) Subject: install examples in an rrdtool specific subdirectory if the prefix does not contain... X-Git-Url: https://git.octo.it/?p=rrdtool.git;a=commitdiff_plain;h=ca91fe151b52758c000dfcb94567a23c0da79404 install examples in an rrdtool specific subdirectory if the prefix does not contain rrd -- Peter Breitenlohner git-svn-id: svn://svn.oetiker.ch/rrdtool/branches/1.2/program@630 a5681a0c-68f1-0310-ab6d-d61299d08faa --- diff --git a/examples/Makefile.am b/examples/Makefile.am index 258173b..b10cc2c 100644 --- a/examples/Makefile.am +++ b/examples/Makefile.am @@ -7,7 +7,8 @@ EXTRA_DIST = cgi-demo.cgi.in piped-demo.pl.in shared-demo.pl.in \ stripes.pl.in bigtops.pl.in minmax.pl.in 4charts.pl.in -examplesdir = $(prefix)/examples +EXPREFIX:=$(shell echo "@prefix@" | grep rrd >/dev/null || echo "rrdtool-@VERSION@/") +examplesdir = $(prefix)/$(EXPREFIX)examples examples_SCRIPTS = cgi-demo.cgi piped-demo.pl shared-demo.pl \ stripes.pl bigtops.pl minmax.pl 4charts.pl