Cross-Platform build scripts for audio plugins
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
492B

  1. diff --git a/wscript b/wscript
  2. index a5bfd28..2cd8846 100644
  3. --- a/wscript
  4. +++ b/wscript
  5. @@ -171,8 +171,6 @@ def build(bld):
  6. # Waveform data source
  7. for i in ['parabola', 'sawtooth', 'square']:
  8. cmd = '${SRC} -r %d -f 12 -s 1 -m 128 -g 1.0 -w %s -p %s -o ${TGT}'
  9. - if Options.options.test_wrapper:
  10. - cmd = Options.options.test_wrapper + ' ' + cmd
  11. bld(rule = cmd % (Options.options.rate, i, i),
  12. source = wavegen.link_task.outputs[0],