[PATCH] Fix sytax error in one of the installed shell scripts

Fabian Greffrath <[email protected]> Mon, 24 Mar 2008 14:36:56 +0100
Newsgroups gmane.comp.video.mjpeg.devel
Message-ID <1206365816.4798.1.camel@beppo>
Dear mjpegtools developers,

I've attached a patch that fixes a syntax error (missing brace) in one
of the installed shell scripts.

Cheers,
Fabian

-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/

_______________________________________________
Mjpeg-developer mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/mjpeg-developer
mjpegtools-1.9~rc3_shell-script-syntax.patch (text/x-patch, 346 B)
diff -Nur mjpegtools-1.9.0rc3/scripts/lavtc.sh mjpegtools-1.9.0rc3.new/scripts/lavtc.sh
--- mjpegtools-1.9.0rc3/scripts/lavtc.sh
+++ mjpegtools-1.9.0rc3.new/scripts/lavtc.sh
@@ -791,7 +791,7 @@
 		break;
 	fi
 done
-if [[ -n ${needToCleanupFifo ]]; then
+if [[ -n ${needToCleanupFifo} ]]; then
 	cleanupFifo ;
 fi
 log_debug "chmod -x ${output}"