zlib: fix headers installation in target directory

Signed-off-by: Lionel Landwerlin <llandwerlin@gmail.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
Lionel Landwerlin 2010-01-27 02:08:49 +01:00 committed by Peter Korsgaard
parent 5082e476d1
commit 5ad8ad0c37
2 changed files with 4 additions and 4 deletions

View File

@ -10,7 +10,7 @@
libglib2, libpcap, libungif, libxml2, lighttpd, mesa, mpg123,
mtd-utils, neon, netstat-nat, openvpn, pcre, qt, rpm, sawman, sdl,
sdl_ttf, ser2net, sqlite, sshfs, tremor, u-boot, usb_modeswitch,
usbutils, webkit, wpa_supplicant, xfsprogs
usbutils, webkit, wpa_supplicant, xfsprogs, zlib
Issues resolved (http://bugs.uclibc.org):
@ -94,7 +94,7 @@
shared-mime-info, sfdisk, spawn-fcgi, speech-tools, sqlite, squashfs,
synergy, syslinux, sysklogd, target-binutils, tcpdump, torsmo, u-boot,
udpcast, util-linux, valgrind, vsftpd, wipe, wpa-supplicant, x11vnc,
xdata_xcursor-themes, xboard, xfsprogs, xstroke, zlib
xdata_xcursor-themes, xboard, xfsprogs, xstroke, zlib[5~
Removed package: mdnsresponder, mpatrol, gcc 3.4.6 + 4.0.4, vice

View File

@ -43,8 +43,8 @@ endef
ifeq ($(BR2_HAVE_DEVFILES),y)
define ZLIB_INSTALL_TARGET_HEADERS
$(INSTALL) -D $(@D)/zlib.h $(STAGING_DIR)/usr/include/zlib.h
$(INSTALL) $(@D)/zconf.h $(STAGING_DIR)/usr/include/
$(INSTALL) -D $(@D)/zlib.h $(TARGET_DIR)/usr/include/zlib.h
$(INSTALL) $(@D)/zconf.h $(TARGET_DIR)/usr/include/
endef
endif