]> git.sur5r.net Git - bacula/bacula/commitdiff
Change default plugins dir to /usr/lib
authorKern Sibbald <kern@sibbald.com>
Tue, 7 Apr 2009 16:07:30 +0000 (16:07 +0000)
committerKern Sibbald <kern@sibbald.com>
Tue, 7 Apr 2009 16:07:30 +0000 (16:07 +0000)
git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@8703 91ce42f0-d328-0410-95d8-f526ca767f89

bacula/ReleaseNotes
bacula/autoconf/configure.in
bacula/configure
bacula/technotes

index 693b463aced4d94bc78a458f7330e3b564c6cbcf..10416d1974aa2997aa2d7a57398ead55552cd28c 100644 (file)
@@ -70,6 +70,8 @@ where the Bacula binaries are installed.  It is also possible
 to explicitly specify the libraries directory on the ./configure
 line (--libdir=/full-path/dir), but this should not be necessary.
 
+  ./configure --libdir=<full-path>
+
 If you have problems with libtool or you wish to use the old 
 way of building libraries and linking them into Bacula, you 
 can do so by disabling libtool on the configure command line with:
@@ -89,6 +91,14 @@ files in /usr/share/doc/bacula by default.  If you
 want to put them elsewhere use:
 
   ./configure --docdir=<full-path>
+
+During the installation of Bacula, any plugins will be
+installed in the plugindir, which is by default the
+same as libdir (/usr/lib).  You can specify an alternate
+location with:
+
+  ./configure --with-plugindir=<full-path>
+
 ==============================================================
 
 This release includes large number of new features and changes.
index 49ceab0fd9c0586c51419112ad4cb945fb050b71..45659021dbd631d7a980405d2d05d95c893e771a 100644 (file)
@@ -1215,7 +1215,7 @@ AC_SUBST(scriptdir)
 # ------------------------------------------
 # Where to place plugindir (plugin files)
 # ------------------------------------------
-plugindir=`eval echo ${sysconfdir}`
+plugindir=`eval echo ${libdir}`
 AC_ARG_WITH(plugindir,
    AC_HELP_STRING([--with-plugindir=PATH], [specify path of Bacula plugins directory]),
    [
index 42afcd5d8db9776aaabab0fa75b21466b1fae916..088d98284782fbd6170c2ef6806fb621ab8fdab7 100755 (executable)
@@ -27365,7 +27365,7 @@ fi
 # ------------------------------------------
 # Where to place plugindir (plugin files)
 # ------------------------------------------
-plugindir=`eval echo ${sysconfdir}`
+plugindir=`eval echo ${libdir}`
 
 # Check whether --with-plugindir was given.
 if test "${with_plugindir+set}" = set; then
index 9a599d95e8346b366096c03d89bd88b69d043dfb..6ee0b779f608b865c330ae8bdf602708a6dc058f 100644 (file)
@@ -2,6 +2,8 @@
           
 General:
 
+06Apr09
+kes  Change default plugins dir to /usr/lib.
 05Apr09
 kes  Fix Win32 make clean to clean correctly 
 kes  Cleanup Win installer dialog messages a bit ...