Bug 4760 - Makefile doesn't produce proto.h for pam modules
Summary: Makefile doesn't produce proto.h for pam modules
Status: RESOLVED FIXED
Alias: None
Product: Samba 3.0
Classification: Unclassified
Component: Build environment (show other bugs)
Version: 3.0.25b
Hardware: All All
: P3 normal
Target Milestone: none
Assignee: Tim Potter
QA Contact: Samba QA Contact
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2007-07-03 12:53 UTC by Raul
Modified: 2008-10-30 18:38 UTC (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Raul 2007-07-03 12:53:10 UTC
When running
 $ make pam_smbpass
or
 $ make pam_winbind

The fail because proto.h has not been built yet

Patch:
--- ../samba-3.0.25b.orig/source/Makefile.in    Tue Jun 19 11:11:39 2007
+++ source/Makefile.in  Tue Jul  3 11:52:00 2007
@@ -835,9 +835,9 @@

 pam_modules : $(PAM_MODULES)

-pam_smbpass : SHOWFLAGS bin/pam_smbpass.@SHLIBEXT@
+pam_smbpass : SHOWFLAGS proto_exists bin/pam_smbpass.@SHLIBEXT@

-pam_winbind : SHOWFLAGS bin/pam_winbind.@SHLIBEXT@
+pam_winbind : SHOWFLAGS proto_exists bin/pam_winbind.@SHLIBEXT@

 torture : SHOWFLAGS $(TORTURE_PROGS)
Comment 1 Guenther Deschner 2008-10-30 18:38:28 UTC
This is no longer an issue.