diff options
author | Stephen Gallagher <sgallagh@redhat.com> | 2009-01-07 10:01:36 -0500 |
---|---|---|
committer | Simo Sorce <idra@samba.org> | 2009-01-09 14:23:12 -0500 |
commit | da71c2abd95930daf696ccecf81925997ff2689b (patch) | |
tree | 4596e2fbaae041189f8a96afadd2ee9e7bdb0d73 | |
parent | c830ff657cc953332fed7c32b5792e5a15a2bcc6 (diff) | |
download | sssd-da71c2abd95930daf696ccecf81925997ff2689b.tar.gz sssd-da71c2abd95930daf696ccecf81925997ff2689b.tar.xz sssd-da71c2abd95930daf696ccecf81925997ff2689b.zip |
Making a few minor build system fixes. "make realdistclean" was not removing all built files appropriately.
-rw-r--r-- | ldb/ldb.pc | 16 | ||||
-rw-r--r-- | talloc/Makefile.in | 1 | ||||
-rw-r--r-- | tevent/Makefile.in | 4 | ||||
-rw-r--r-- | tevent/tevent.mk | 2 |
4 files changed, 4 insertions, 19 deletions
diff --git a/ldb/ldb.pc b/ldb/ldb.pc deleted file mode 100644 index 0d439df5b..000000000 --- a/ldb/ldb.pc +++ /dev/null @@ -1,16 +0,0 @@ -prefix=/usr/local -exec_prefix=${prefix} -libdir=${exec_prefix}/lib -includedir=${prefix}/include -modulesdir=@modulesdir@ - -Name: ldb -Description: An LDAP-like embedded database -Version: 0.9.2 -Requires.private: tdb -Requires: talloc -Libs: -L${libdir} -lldb -Libs.private: -llber -lldap -Cflags: -I${includedir} -Modulesdir: ${modulesdir} -URL: http://ldb.samba.org/ diff --git a/talloc/Makefile.in b/talloc/Makefile.in index 5224b00a7..6fb39917f 100644 --- a/talloc/Makefile.in +++ b/talloc/Makefile.in @@ -48,6 +48,7 @@ installcheck:: test install distclean:: clean rm -f Makefile + rm -f talloc.pc rm -f config.log config.status config.h config.cache realdistclean:: distclean diff --git a/tevent/Makefile.in b/tevent/Makefile.in index 811cc16f6..90dcba7f8 100644 --- a/tevent/Makefile.in +++ b/tevent/Makefile.in @@ -73,8 +73,8 @@ clean:: rm -f *.o *.a */*.o distclean:: clean - rm -f config.log config.status include/config.h config.cache + rm -f config.log config.h config.status include/config.h config.cache rm -f Makefile realdistclean:: distclean - rm -f configure include/config.h.in + rm -f configure include/config.h.in config.h.in diff --git a/tevent/tevent.mk b/tevent/tevent.mk index b3a6608b9..e89685455 100644 --- a/tevent/tevent.mk +++ b/tevent/tevent.mk @@ -28,7 +28,7 @@ installlibs:: installdirs install:: all installdirs installheaders installlibs $(PYTHON_INSTALL_TARGET) clean:: - rm -f $(TEVENT_SONAME) $(TEVENT_SOLIB) libtevent.a libtevent.$(SHLIBEXT) + rm -f $(TEVENT_SONAME) $(TEVENT_SOLIB) libtevent.a libtevent.$(SHLIBEXT) tevent.$(SHLIBEXT) rm -f tevent.pc rm -f _libtevent.$(SHLIBEXT) |