wscript: drop unused path_prefix

It is not referenced anywhere, and also not set consistently.
This commit is contained in:
Mads Kiilerich 2022-01-24 22:51:52 +01:00 committed by Paul Davis
parent d220f477ed
commit f1bb18ae53
8 changed files with 0 additions and 16 deletions

View file

@ -13,8 +13,6 @@ def m_hook(self, node):
"""Alias .m files to be compiled the same as .c files, gcc will do the right thing.""" """Alias .m files to be compiled the same as .c files, gcc will do the right thing."""
return self.create_compiled_task('c', node) return self.create_compiled_task('c', node)
path_prefix = 'gtk2_ardour/'
gtk2_ardour_sources = [ gtk2_ardour_sources = [
'about.cc', 'about.cc',
'actions.cc', 'actions.cc',

View file

@ -9,8 +9,6 @@ CURRENT_SESSION_FILE_VERSION = 7002
I18N_PACKAGE = 'ardour' I18N_PACKAGE = 'ardour'
path_prefix = 'libs/ardour/'
libardour_sources = [ libardour_sources = [
'amp.cc', 'amp.cc',
'analyser.cc', 'analyser.cc',

View file

@ -5,8 +5,6 @@ import os
import sys import sys
import re import re
path_prefix = 'libs/ardouralsautil/'
def options(opt): def options(opt):
autowaf.set_options(opt) autowaf.set_options(opt)

View file

@ -16,8 +16,6 @@ CANVAS_LIB_VERSION = '0.0.0'
I18N_PACKAGE = 'libcanvas' I18N_PACKAGE = 'libcanvas'
path_prefix = 'libs/canvas/'
canvas_sources = [ canvas_sources = [
'arc.cc', 'arc.cc',
'arrow.cc', 'arrow.cc',

View file

@ -3,8 +3,6 @@ from waflib.extras import autowaf as autowaf
import os import os
import sys import sys
path_prefix = 'libs/clearlooks-newer'
def options(opt): def options(opt):
autowaf.set_options(opt) autowaf.set_options(opt)

View file

@ -47,8 +47,6 @@ gtkmm2ext_sources = [
'window_title.cc' 'window_title.cc'
] ]
path_prefix = 'libs/gtkmm2ext/'
def options(opt): def options(opt):
autowaf.set_options(opt) autowaf.set_options(opt)

View file

@ -13,8 +13,6 @@ LIBMIDIPP_VERSION = "%s.%s.%s" % (MAJOR, MINOR, MICRO)
# micro increment <=> no interface changes # micro increment <=> no interface changes
LIBMIDIPP_LIB_VERSION = '4.1.0' LIBMIDIPP_LIB_VERSION = '4.1.0'
path_prefix = 'libs/midi++2/'
libmidi_sources = [ libmidi_sources = [
'midi.cc', 'midi.cc',
'channel.cc', 'channel.cc',

View file

@ -19,8 +19,6 @@ LIBPBD_MAJOR_VERSION = '4'
I18N_PACKAGE = 'libpbd4' I18N_PACKAGE = 'libpbd4'
path_prefix = 'libs/pbd/'
libpbd_sources = [ libpbd_sources = [
'basename.cc', 'basename.cc',
'base_ui.cc', 'base_ui.cc',