diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2012-11-14 13:26:54 +0100 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2012-11-14 13:28:40 +0100 |
commit | c28fa5a0b3566b133b5e3336d04f1333970ac179 (patch) | |
tree | 46efcadb64f64e5765f176e9789eb7e5958d4427 | |
parent | 4d5bdd0b460ee2ff8989b0f83fa38a3af052b343 (diff) | |
download | qemu-c28fa5a0b3566b133b5e3336d04f1333970ac179.zip |
pixman: pass cflags, add -fPIC
Pass on CFLAGS to the pixman configure script.
Add -fPIC to the cflags, needed to make the final link succeed.
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -122,7 +122,7 @@ subdir-pixman: pixman/Makefile $(call quiet-command,$(MAKE) $(SUBDIR_MAKEFLAGS) -C pixman V="$(V)" all,) pixman/Makefile: $(SRC_PATH)/pixman/configure - (cd pixman; $(SRC_PATH)/pixman/configure $(AUTOCONF_HOST) --disable-gtk --disable-shared --enable-static) + (cd pixman; CFLAGS="$(CFLAGS) -fPIC" $(SRC_PATH)/pixman/configure $(AUTOCONF_HOST) --disable-gtk --disable-shared --enable-static) $(SRC_PATH)/pixman/configure: (cd $(SRC_PATH)/pixman; autoreconf -v --install) |