diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2002-04-10 16:45:25 +0000 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2002-04-10 16:45:25 +0000 |
commit | 563673e15db995b6f531b44be7bb162330ac157a (patch) | |
tree | 91e485c1011fdc904cb6607acfd5e55f1c25fecd /src/Makefile.shlib | |
parent | b210b1626555230eba52a81f38d8ddae7a5f6f34 (diff) | |
download | postgresql-563673e15db995b6f531b44be7bb162330ac157a.tar.gz |
Add make install-strip target.
Diffstat (limited to 'src/Makefile.shlib')
-rw-r--r-- | src/Makefile.shlib | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Makefile.shlib b/src/Makefile.shlib index 2496ad9914..9a4ee4b50e 100644 --- a/src/Makefile.shlib +++ b/src/Makefile.shlib @@ -6,7 +6,7 @@ # Copyright (c) 1998, Regents of the University of California # # IDENTIFICATION -# $Header: /cvsroot/pgsql/src/Makefile.shlib,v 1.56 2001/11/11 19:20:53 momjian Exp $ +# $Header: /cvsroot/pgsql/src/Makefile.shlib,v 1.57 2002/04/10 16:45:25 petere Exp $ # #------------------------------------------------------------------------- @@ -357,7 +357,7 @@ endif # enable_shared install-lib: install-lib-static install-lib-shared install-lib-static: lib$(NAME).a - $(INSTALL_DATA) $< $(DESTDIR)$(libdir)/lib$(NAME).a + $(INSTALL_STLIB) $< $(DESTDIR)$(libdir)/lib$(NAME).a ifeq ($(enable_shared), yes) install-lib-shared: $(shlib) |