about summary refs log tree commit diff
path: root/pkgs/development/libraries/zlib/no-shared.patch
blob: e26449ffd9f06f8670da42b7a1a01afae05d571e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
Support building the static library only.

diff -ru -x '*~' zlib-1.2.5-orig/Makefile.in zlib-1.2.5/Makefile.in
--- zlib-1.2.5-orig/Makefile.in	2010-04-20 06:12:21.000000000 +0200
+++ zlib-1.2.5/Makefile.in	2010-07-27 13:25:02.176322291 +0200
@@ -168,7 +168,7 @@
 	-@if [ ! -d $(DESTDIR)$(man3dir)      ]; then mkdir -p $(DESTDIR)$(man3dir); fi
 	-@if [ ! -d $(DESTDIR)$(pkgconfigdir) ]; then mkdir -p $(DESTDIR)$(pkgconfigdir); fi
 	cp $(STATICLIB) $(DESTDIR)$(libdir)
-	cp $(SHAREDLIBV) $(DESTDIR)$(sharedlibdir)
+	test -z "$(SHAREDLIBV)" || cp $(SHAREDLIBV) $(DESTDIR)$(sharedlibdir)
 	cd $(DESTDIR)$(libdir); chmod u=rw,go=r $(STATICLIB)
 	-@(cd $(DESTDIR)$(libdir); $(RANLIB) libz.a || true) >/dev/null 2>&1
 	-@cd $(DESTDIR)$(sharedlibdir); if test "$(SHAREDLIBV)" -a -f $(SHAREDLIBV); then \