1
mirror of https://code.videolan.org/videolan/vlc synced 2024-07-21 07:24:15 +02:00

Makefile: make sure that libpng shared dll isn't installed to prevent VLC from linking against it (Cygwin only)

This commit is contained in:
Damien Fouilleul 2005-11-24 23:08:48 +00:00
parent 228799271f
commit c645b38e4f

View File

@ -1368,7 +1368,7 @@ ifdef HAVE_DARWIN_OS
(cd $<; cp scripts/makefile.macosx Makefile && make && make install)
else
ifdef HAVE_WIN32
(cd $<; rm -f INSTALL; cp scripts/makefile.cygwin Makefile && make $(HOSTCC) && make install)
(cd $<; rm -f INSTALL; cp scripts/makefile.cygwin Makefile && make $(HOSTCC) && make install-static)
else
(cd $<; $(HOSTCC) ./configure $(HOSTCONF) --prefix=$(PREFIX) && make && make install)
endif