Page 1 of 1

Question about make package-win32-zip

Posted: 10 Dec 2007 15:09
by robertparson
Hello everybody,

When I compile VLC, the pictures files are in (DIR_VLC)/share/http/images

But When i create a windows package : make package-win32-zip the pictures files are in (DIR_VLC)/http/images

Does the package-win32-zip modifies the path of pictures ?

Thanks
Best Regards

Re: Question about make package-win32-zip

Posted: 10 Dec 2007 15:20
by funman
yes it does

extract from Makefile.am, package-win-common target

cp $(srcdir)/share/http/*.html $(top_builddir)/vlc-${VERSION}/http/ ;

Re: Question about make package-win32-zip

Posted: 10 Dec 2007 16:04
by robertparson
cp $(srcdir)/share/http/*.html $(top_builddir)/vlc-${VERSION}/http/ ;
Yes, I see it... In fact i would like to know where and how in the vlc code, you can manage the path of the picture.... between normal compil' and when we create a package ( with make package-win32-zip)

Thanks :oops: