Skip to content

Commit

Permalink
Simplify installation paths
Browse files Browse the repository at this point in the history
  • Loading branch information
dgsga committed Mar 15, 2024
1 parent 9edce90 commit 95b81b2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
2 changes: 1 addition & 1 deletion config/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ endforeach

install_data('extmap.conf', install_dir: pkgconfdir)

install_data('netatalk-dbus.conf', install_dir: prefix / 'etc/dbus-1/system.d')
install_data('netatalk-dbus.conf', install_dir: pkgconfdir / 'dbus-1/system.d')

install_data('README', install_dir: localstatedir / 'netatalk')

Expand Down
8 changes: 3 additions & 5 deletions meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -33,15 +33,13 @@ target_os = target_machine.system()
prefix = get_option('prefix')
exec_prefix = get_option('prefix')
bindir = prefix / get_option('bindir')
datadir = prefix / get_option('datadir')
includedir = prefix / get_option('includedir')
libdir = prefix / get_option('libdir')
localstatedir = prefix / get_option('localstatedir')
mandir = prefix / get_option('mandir')
sbindir = prefix / get_option('sbindir')
datadir = prefix / get_option('datadir')
includedir = prefix / get_option('includedir')
optdir = prefix / 'opt'
pkgconfdir = prefix / get_option('sysconfdir')
tallocdir = optdir / 'talloc/include'
sbindir = prefix / get_option('sbindir')

##################
# Compiler flags #
Expand Down

0 comments on commit 95b81b2

Please sign in to comment.