diff options
-rw-r--r-- | brep/buildfile | 4 | ||||
-rw-r--r-- | etc/buildfile | 6 | ||||
-rw-r--r-- | mod/buildfile | 2 | ||||
-rw-r--r-- | www/buildfile | 4 |
4 files changed, 9 insertions, 7 deletions
diff --git a/brep/buildfile b/brep/buildfile index 529916a..b1e80a3 100644 --- a/brep/buildfile +++ b/brep/buildfile @@ -4,7 +4,7 @@ define sql: file sql{*}: extension = sql -sql{*}: install = data +sql{*}: install = data/ # lib{brep} # @@ -30,4 +30,4 @@ lib{brep}: cxx.export.poptions = -I$out_root -I$src_root # Install into the brep/ subdirectory of, say, /usr/include/. # -install.include = $install.include/brep +install.include = $install.include/brep/ diff --git a/etc/buildfile b/etc/buildfile index 4910076..4e5478c 100644 --- a/etc/buildfile +++ b/etc/buildfile @@ -5,5 +5,7 @@ ./: file{brep-module.conf brep-apache2.conf} \ systemd/file{brep-load.service brep-load.timer} -install = data/etc -systemd/: install = data/etc/systemd +install = data/etc/ +systemd/: install = data/etc/systemd/ + +#@@ BC install.subdirs
\ No newline at end of file diff --git a/mod/buildfile b/mod/buildfile index 1225a7a..a2fb494 100644 --- a/mod/buildfile +++ b/mod/buildfile @@ -15,7 +15,7 @@ else mod{*}: bin.libprefix = mod_ } -mod{*}: install = libexec +mod{*}: install = libexec/ import libs += libodb%lib{odb} import libs += libodb-pgsql%lib{odb-pgsql} diff --git a/www/buildfile b/www/buildfile index bd4d8a1..c6f5f87 100644 --- a/www/buildfile +++ b/www/buildfile @@ -4,11 +4,11 @@ define css: file css{*}: extension = css -css{*}: install = data/www +css{*}: install = data/www/ define scss: file scss{*}: extension = scss -scss{*}: install = data/www +scss{*}: install = data/www/ ./: css{common brep-common \ package-details package-details-body \ |