Hi,

src/gallium/winsys/drm/intel/dri/Makefile contains this:

symlinks: $(TOP)/$(LIB_DIR)/gallium
       @rm -f $(TOP)/lib/gallium/i965_dri.so
       ln -s i915_dri.so $(TOP)/lib/gallium/i965_dri.so

Which will only work if $(LIB_DIR) is set to "lib" (and fails if it's set e.g. 
to lib64). Attached patch will replace the usage of hardcoded /lib/ with 
$(LIB_DIR) to make it more consistent.

Please apply.

-- 
Hanno Böck              Blog:           http://www.hboeck.de/
GPG: 3DBD3B20           Jabber/Mail:    [email protected]
http://ausdenaugenausdemsinn.de - Kein Sicherheitsrabatt für CO2-Speicher
http://tinyurl.com/dceu73 - Internetzensur stoppen!

http://schokokeks.org - professional webhosting
--- Mesa-9999/src/gallium/winsys/drm/intel/dri/Makefile.1	2009-05-09 10:11:08.000000000 +0200
+++ Mesa-9999/src/gallium/winsys/drm/intel/dri/Makefile	2009-05-09 10:11:19.000000000 +0200
@@ -21,5 +21,5 @@
 DRI_LIB_DEPS += -ldrm_intel
 
 symlinks: $(TOP)/$(LIB_DIR)/gallium
-	@rm -f $(TOP)/lib/gallium/i965_dri.so
-	ln -s i915_dri.so $(TOP)/lib/gallium/i965_dri.so
+	@rm -f $(TOP)/$(LIB_DIR)/gallium/i965_dri.so
+	ln -s i915_dri.so $(TOP)/$(LIB_DIR)/gallium/i965_dri.so

Attachment: signature.asc
Description: This is a digitally signed message part.

------------------------------------------------------------------------------
The NEW KODAK i700 Series Scanners deliver under ANY circumstances! Your
production scanning environment may not be a perfect world - but thanks to
Kodak, there's a perfect scanner to get the job done! With the NEW KODAK i700
Series Scanner you'll get full speed at 300 dpi even with all image 
processing features enabled. http://p.sf.net/sfu/kodak-com
_______________________________________________
Mesa3d-dev mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/mesa3d-dev

Reply via email to