Project

General

Profile

0001-meson.build-ensure-paths-in-defines-are-absolute.patch

Enne Eziarc, November 16, 2019 07:39

View differences:

meson.build
101 101
install_iconfile = join_paths(install_unscalable_iconpath, 'audacious.png')
102 102

  
103 103

  
104
conf.set_quoted('INSTALL_BINDIR', install_bindir)
105
conf.set_quoted('INSTALL_DATADIR', install_datadir)
106
conf.set_quoted('INSTALL_PLUGINDIR', install_plugindir)
107
conf.set_quoted('INSTALL_LOCALEDIR', install_localedir)
108
conf.set_quoted('INSTALL_DESKTOPFILE', install_desktopfile)
109
conf.set_quoted('INSTALL_ICONFILE', install_iconfile)
104
conf.set_quoted('INSTALL_BINDIR', join_paths(get_option('prefix'), install_bindir))
105
conf.set_quoted('INSTALL_DATADIR', join_paths(get_option('prefix'), install_datadir))
106
conf.set_quoted('INSTALL_PLUGINDIR', join_paths(get_option('prefix'), install_plugindir))
107
conf.set_quoted('INSTALL_LOCALEDIR', join_paths(get_option('prefix'), install_localedir))
108
conf.set_quoted('INSTALL_DESKTOPFILE', join_paths(get_option('prefix'), install_desktopfile))
109
conf.set_quoted('INSTALL_ICONFILE', join_paths(get_option('prefix'), install_iconfile))
110 110
conf.set('plugindir', install_plugindir)
111 111
conf.set('datarootdir', get_option('datadir'))
112 112

  
113
-