[vlc-devel] commit: No reason to not use $(HOSTCONF) when possible. ( Jean-Baptiste Kempf )
git version control
git at videolan.org
Sat Jun 28 08:49:29 CEST 2008
vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Fri Jun 27 23:48:14 2008 -0700| [ce1450531445c7cd7348b9206b59b694cd019513]
No reason to not use $(HOSTCONF) when possible.
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=ce1450531445c7cd7348b9206b59b694cd019513
---
extras/contrib/src/Makefile | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/extras/contrib/src/Makefile b/extras/contrib/src/Makefile
index 745b1dc..08ae40c 100644
--- a/extras/contrib/src/Makefile
+++ b/extras/contrib/src/Makefile
@@ -1776,9 +1776,9 @@ else
.zvbi: zvbi
endif
ifdef HAVE_DARWIN_OS
- (cd $<; ./configure --prefix=$(PREFIX) CFLAGS="$(CFLAGS) -fnested-functions" && make && make install)
+ (cd $<; ./configure $(HOSTCONF) --prefix=$(PREFIX) CFLAGS="$(CFLAGS) -fnested-functions" && make && make install)
else
- (cd $<; ./configure --prefix=$(PREFIX) CFLAGS="$(CFLAGS)" && make && make install)
+ (cd $<; ./configure $(HOSTCONF) --prefix=$(PREFIX) CFLAGS="$(CFLAGS)" && make && make install)
endif
$(INSTALL_NAME)
touch $@
More information about the vlc-devel
mailing list