On Mon, Oct 3, 2011 at 12:24, Vijay Kiran Kamuju <[email protected]> wrote:
> Hi,
>
> This is on fedora 15. I have just downloaded the fresh git, and
> attempting the my first build on this system.
Please bottom-post on wine mailing lists.
> The source code is downloaded to a usb drive which is FAT32 formatted.
Looking at $TOPDIR/Makefile:
__builddeps__: dlls/libd3dcompiler.def
dlls/libd3dcompiler.def: dlls/d3dcompiler_43/libd3dcompiler.def
$(RM) $@ && $(LN_S) d3dcompiler_43/libd3dcompiler.def $@
LN_S is `ln -s`, which will fail on a fat32 file system.
You need to build on a file system that supports symlinks (ext3/4,
xfs, nfs, etc.).
--
-Austin