diff options
author | Jeremy Allison <jra@samba.org> | 2007-12-21 14:38:52 -0800 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2007-12-21 14:38:52 -0800 |
commit | 2fc5eb7916166e955a29906e39ba8f49b3f87376 (patch) | |
tree | 0afa1ee89348ca27990d220fd0b97ceb8bc3e183 /source3 | |
parent | 3f5d5bc300cc3061bc7066b8b48b68b2b5d55c5d (diff) | |
download | samba-2fc5eb7916166e955a29906e39ba8f49b3f87376.tar.gz samba-2fc5eb7916166e955a29906e39ba8f49b3f87376.tar.bz2 samba-2fc5eb7916166e955a29906e39ba8f49b3f87376.zip |
Fix install - it was trying to install libnetapi.h whereas
the actual file is netapi.h. Guenther please check which
name this should be !
Jeremy.
(This used to be commit 035fadaa596e893b7eeac09bc587ad3b73f77d0b)
Diffstat (limited to 'source3')
-rw-r--r-- | source3/Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/Makefile.in b/source3/Makefile.in index 74bae8928e..3f7c857fc3 100644 --- a/source3/Makefile.in +++ b/source3/Makefile.in @@ -1888,7 +1888,7 @@ installlibnetapi: installdirs libnetapi @$(SHELL) $(srcdir)/script/installdirs.sh $(INSTALLPERMS_BIN) $(DESTDIR) $(LIBDIR) -$(INSTALLLIBCMD_SH) bin/libnetapi.@SHLIBEXT@ $(DESTDIR)$(LIBDIR) -$(INSTALLLIBCMD_A) bin/libnetapi.a $(DESTDIR)$(LIBDIR) - -$(INSTALLCMD) -m $(INSTALLPERMS_DATA) $(srcdir)/lib/netapi/libnetapi.h $(DESTDIR)${prefix}/include + -$(INSTALLCMD) -m $(INSTALLPERMS_DATA) $(srcdir)/lib/netapi/netapi.h $(DESTDIR)${prefix}/include installpammodules: $(PAM_MODULES) @$(SHELL) $(srcdir)/script/installdirs.sh $(INSTALLPERMS_BIN) $(DESTDIR) $(PAMMODULESDIR) @@ -1977,7 +1977,7 @@ uninstalllibaddns: uninstalllibnetapi: -$(UNINSTALLLIBCMD_SH) $(DESTDIR)$(LIBDIR)/libnetapi.@SHLIBEXT@ -$(UNINSTALLLIBCMD_A) $(DESTDIR)$(LIBDIR)/libnetapi.a - -rm -f $(DESTDIR)${prefix}/include/libnetapi.h + -rm -f $(DESTDIR)${prefix}/include/netapi.h uninstallpammodules: @for module in $(PAM_MODULES); do \ |