mirror of
https://github.com/cookiengineer/audacity
synced 2025-10-09 16:13:41 +02:00
autotools
dox2-src
help
images
include
lib-src
FileDialog
expat
ffmpeg
lame
lib-widget-extra
libflac
libid3tag
libmad
libnyquist
libogg
libscorealign
libsndfile
libsoxr
libvamp
libvorbis
lv2
mod-null
mod-nyq-bench
mod-script-pipe
mod-track-panel
portaudio-v19
portburn
portmidi
portmixer
portsmf
sbsms
soundtouch
twolame
build-scripts
doc
frontend
libtwolame
simplefrontend
tests
win32
AUTHORS
COPYING
ChangeLog
Makefile.am
Makefile.in
README
TODO
autogen.sh
configure
configure.ac
fix-tests.patch
twolame.pc.in
Makefile.am
Makefile.in
audacity-patches.txt
dist-libsoxr.mk
dist-libvamp.mk
dist-portaudio.mk
locale
m4
mac
nyquist
plug-ins
presets
qa
scripts
src
tests
win
.gitattributes
.gitignore
.travis.yml
ABOUT-NLS
LICENSE.txt
Makefile.am
Makefile.in
README.txt
appveyor.yml
audacity.dox
branches.txt
configure
configure.ac
po
todo.txt
The automake manual says: "the contents of a non-empty AM_TESTS_ENVIRONMENT must be terminated by a semicolon." Without the semicolon, the perl command will indefinitely wait for input from stdin.
17 lines
719 B
Diff
17 lines
719 B
Diff
Description: Terminate AM_TESTS_ENVIRONMENT by a semicolon.
|
|
The automake manual says: "the contents of a non-empty AM_TESTS_ENVIRONMENT
|
|
must be terminated by a semicolon." Without the semicolon, the perl command
|
|
will indefinitely wait for input from stdin.
|
|
Index: tests/Makefile.am
|
|
===================================================================
|
|
--- tests/Makefile.am (revision 12957)
|
|
+++ tests/Makefile.am (working copy)
|
|
@@ -5,6 +5,6 @@
|
|
TESTS_ENVIRONMENT = \
|
|
TWOLAME_CMD="$(top_builddir)/frontend/twolame" \
|
|
STWOLAME_CMD="$(top_builddir)/simplefrontend/stwolame" \
|
|
- perl -w -Mstrict -MTest::Harness -e "runtests(@ARGV)"
|
|
+ perl -w -Mstrict -MTest::Harness -e "runtests(@ARGV)";
|
|
|
|
CLEANFILES = *.mp2 *.raw
|