[vlc-commits] commit: Mozilla: do not hard-code autoconf file descriptors ( Rémi Denis-Courmont )
git at videolan.org
git at videolan.org
Sat Apr 10 15:39:17 CEST 2010
vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Sat Apr 10 16:38:52 2010 +0300| [9eb581755a1502c5d8fde90355c134fea9668f5d] | committer: Rémi Denis-Courmont
Mozilla: do not hard-code autoconf file descriptors
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=9eb581755a1502c5d8fde90355c134fea9668f5d
---
configure.ac | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/configure.ac b/configure.ac
index 9ccbeb2..51b6ca2 100644
--- a/configure.ac
+++ b/configure.ac
@@ -4557,11 +4557,11 @@ then
for i in "${with_mozilla_pkg}" libxul {seamonkey,iceape,xulrunner,firefox,iceweasel,mozilla}-plugin; do
if test -n "$i"
then
- echo "Trying to find $i package" >&5
- if $PKG_CONFIG --exists --print-errors "$i" 2>&5
+ echo "Trying to find $i package" >&AS_MESSAGE_LOG_FD
+ if $PKG_CONFIG --exists --print-errors "$i" 2>&AS_MESSAGE_LOG_FD
then
- echo "Using $i pkg-config package." >&5
- echo "Using $i package." >&6
+ echo "Using $i pkg-config package." >&AS_MESSAGE_LOG_FD
+ echo "Using $i package." >&AS_MESSAGE_FD
found=1
MOZILLA_CFLAGS=$(eval $PKG_CONFIG --cflags "$i" )
MOZILLA_LIBS=$(eval $PKG_CONFIG --libs "$i" )
More information about the vlc-commits
mailing list