changeset 3109:98e1ed7ae70b

Revert part of d89eccc2edd3, it's prevent installation of headers and .pc files.
author Michael Goffioul <michael.goffioul@gmail.com>
date Sat, 29 Jun 2013 14:56:27 -0400
parents acee522701c0
children 39997b7399e5
files src/zlib.mk
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/src/zlib.mk	Fri Jun 28 21:14:15 2013 -0400
+++ b/src/zlib.mk	Sat Jun 29 14:56:27 2013 -0400
@@ -21,10 +21,10 @@
     cd '$(1)' && CC='$(MXE_CC)' ./configure \
       --prefix='$(HOST_PREFIX)'
 
-    $(MAKE) -C '$(1)' -j '$(JOBS)'
+    $(MAKE) -C '$(1)' -j '$(JOBS)' install
 
-    if [ "$(BUILD_STATIC)" = yes ]; then \
-      $(MAKE) -C '$(1)' -j '$(JOBS)' install; \
+    if [ "$(BUILD_STATIC)" != yes ]; then \
+      true; \
     fi
 
     if [ "$(BUILD_SHARED)" = yes ]; then \