diff options
author | Peter Korsgaard <jacmet@sunsite.dk> | 2008-08-26 19:22:46 +0000 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2008-08-26 19:22:46 +0000 |
commit | 7446db2027b7826ccc25ed6fc4409bb0d938a75f (patch) | |
tree | 3a8297148025327322388b17dfcc75dfcbb8d860 /package/pixman/pixman.mk | |
parent | 46f418844695525302df1905c0fe27d27c6fc484 (diff) | |
download | buildroot-novena-7446db2027b7826ccc25ed6fc4409bb0d938a75f.tar.gz buildroot-novena-7446db2027b7826ccc25ed6fc4409bb0d938a75f.zip |
pixman: cleanup staging + target install
- install-data installs a subset of install / install-strip, so just drop it
- use install-strip for target
Diffstat (limited to 'package/pixman/pixman.mk')
-rw-r--r-- | package/pixman/pixman.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/package/pixman/pixman.mk b/package/pixman/pixman.mk index 2e8158f30..4cba0d06c 100644 --- a/package/pixman/pixman.mk +++ b/package/pixman/pixman.mk @@ -8,7 +8,7 @@ PIXMAN_SOURCE = pixman-$(PIXMAN_VERSION).tar.gz PIXMAN_SITE = http://cairographics.org/releases/ PIXMAN_AUTORECONF = NO PIXMAN_INSTALL_STAGING = YES -PIXMAN_INSTALL_STAGING_OPT = DESTDIR=$(STAGING_DIR) install install-data -PIXMAN_INSTALL_TARGET_OPT = DESTDIR=$(TARGET_DIR) install install-data +PIXMAN_INSTALL_STAGING_OPT = DESTDIR=$(STAGING_DIR) install +PIXMAN_INSTALL_TARGET_OPT = DESTDIR=$(TARGET_DIR) install-strip $(eval $(call AUTOTARGETS,package,pixman)) |