From: Marco van Wieringen Date: Tue, 18 Jan 2011 13:25:32 +0000 (+0100) Subject: Backport one more patch into master from class based catalog backend code. X-Git-Tag: Release-5.2.1~724 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=ffa8922f6e7d7955eaa2a1ab23f08552b650d019;p=bacula%2Fbacula Backport one more patch into master from class based catalog backend code. --- diff --git a/bacula/Makefile.in b/bacula/Makefile.in index 7cb7e60837..cd7434b66c 100755 --- a/bacula/Makefile.in +++ b/bacula/Makefile.in @@ -190,11 +190,16 @@ Makefiles: chmod 755 dvd-handler) (cd src/cats; \ - chmod 755 create_bacula_database update_bacula_tables make_bacula_tables; \ - chmod 755 grant_bacula_privileges drop_bacula_tables drop_bacula_database; \ - chmod 755 create_@DB_TYPE@_database update_@DB_TYPE@_tables make_@DB_TYPE@_tables; \ - chmod 755 grant_@DB_TYPE@_privileges drop_@DB_TYPE@_tables drop_@DB_TYPE@_database; \ + chmod 755 create_bacula_database update_bacula_tables make_bacula_tables; \ + chmod 755 grant_bacula_privileges drop_bacula_tables drop_bacula_database; \ chmod 755 make_catalog_backup delete_catalog_backup) + + (cd src/cats; \ + for db_type in @DB_BACKENDS@; do \ + chmod 755 create_$$db_type_database update_$$db_type_tables make_$$db_type_tables; \ + chmod 755 grant_$$db_type_privileges drop_$$db_type_tables drop_$$db_type_database; \ + done) + (cd src/qt-console; \ chmod 755 install_conf_file build-depkgs-qt-console)