diff options
author | Bruno Haible <bruno@clisp.org> | 2002-05-21 18:30:24 +0000 |
---|---|---|
committer | Bruno Haible <bruno@clisp.org> | 2009-06-23 12:07:58 +0200 |
commit | b6b574e19b4de8684f6755c98b28c34510b31f06 (patch) | |
tree | 70fbed2ce0ce9bbee563215cfc7c1fc12ee028fd /lib | |
parent | 322008291d228e7e041ce1b0eb3553f3a4cdd832 (diff) | |
download | external_gettext-b6b574e19b4de8684f6755c98b28c34510b31f06.zip external_gettext-b6b574e19b4de8684f6755c98b28c34510b31f06.tar.gz external_gettext-b6b574e19b4de8684f6755c98b28c34510b31f06.tar.bz2 |
Don't install libgettextlib.a and libgettextsrc.a.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/ChangeLog | 6 | ||||
-rw-r--r-- | lib/Makefile.am | 7 |
2 files changed, 13 insertions, 0 deletions
diff --git a/lib/ChangeLog b/lib/ChangeLog index f40e1b3..c5a54ce 100644 --- a/lib/ChangeLog +++ b/lib/ChangeLog @@ -1,3 +1,9 @@ +2002-05-18 Bruno Haible <bruno@clisp.org> + + * Makefile.am (RM): New variable. + (install-exec-am): Depend on install-exec-clean. + (install-exec-clean): New rule. + 2002-05-09 Bruno Haible <bruno@clisp.org> * config.charset: Update for newest glibc. Add canonical names diff --git a/lib/Makefile.am b/lib/Makefile.am index 97c487a..2c4b893 100644 --- a/lib/Makefile.am +++ b/lib/Makefile.am @@ -19,6 +19,8 @@ AUTOMAKE_OPTIONS = 1.5 gnits no-dependencies +RM = rm -f + lib_LTLIBRARIES = libgettextlib.la # Sources that are compiled on all platforms. @@ -95,6 +97,11 @@ libgettextlib_la_LDFLAGS = \ -release @VERSION@ \ @LTLIBINTL@ @LTLIBICONV@ -lc -no-undefined +# No need to install libgettextlib.a. +install-exec-am: install-exec-clean +install-exec-clean: + $(RM) $(DESTDIR)$(libdir)/libgettextlib.a + # Extra files to be installed. gettextsrcdir = $(datadir)/gettext |