Closed
Bug 310521
Opened 19 years ago
Closed 18 years ago
build with objdir option fails for libprldap.exp: $(srcdir) needed in Makefile.in $(PRLDAP_EXPORT_DEFS) rule
Categories
(Directory :: LDAP C SDK, defect)
Tracking
(Not tracked)
RESOLVED
FIXED
People
(Reporter: ymaillvv, Assigned: mcs)
Details
Attachments
(2 files)
User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.0.1) Gecko/20020830
Build Identifier:
Build from 1.7.8 tarball (i checked the current sources - it should be
reproducible as well) with objdir, ie. with option like this
mk_add_options MOZ_OBJDIR=@TOPSRCDIR@/suite-opt
Build failed at <objdir>/directory/c-sdk/ldap/libraries/libprldap/
because there wasn't libprldap.exp created. I didn't save the log, yet
the following self-explaining patch corrected the situation:
*** directory/c-sdk/ldap/libraries/libprldap/Makefile.in_orig Thu Sep 29
15:15:48 2005
--- directory/c-sdk/ldap/libraries/libprldap/Makefile.in Thu Sep 29
15:14:56 2005
***************
*** 160,166 ****
ifeq ($(USE_DLL_EXPORTS_FILE), 1)
# recursive gmake rule to create exported symbols file
! $(PRLDAP_EXPORT_DEFS):: libprldap.ex
ifeq ($(OS_ARCH), WINNT)
$(GENEXPORTS) Win32 Standard $< $(GENEXPARGS) > $@
else
--- 160,166 ----
ifeq ($(USE_DLL_EXPORTS_FILE), 1)
# recursive gmake rule to create exported symbols file
! $(PRLDAP_EXPORT_DEFS):: $(srcdir)/libprldap.ex
ifeq ($(OS_ARCH), WINNT)
$(GENEXPORTS) Win32 Standard $< $(GENEXPARGS) > $@
else
Reproducible: Always
Comment 3•19 years ago
|
||
Comment 4•19 years ago
|
||
| Assignee | ||
Comment 5•19 years ago
|
||
Comment on attachment 210484 [details]
diffs for fix
These changes look fine.
Attachment #210484 -
Flags: review+
Comment 6•19 years ago
|
||
Checkin: /cvsroot/mozilla/directory/c-sdk/ldap/libraries/libprldap/Makefile.in version 5.15 Mark, you can close this one as fixed.
| Assignee | ||
Comment 7•19 years ago
|
||
Fixed. Thanks Rich!
Status: NEW → RESOLVED
Closed: 19 years ago
Resolution: --- → FIXED
| Assignee | ||
Comment 8•19 years ago
|
||
Reopened. Did you commit to the branch?
Status: RESOLVED → REOPENED
Resolution: FIXED → ---
| Assignee | ||
Comment 10•19 years ago
|
||
(In reply to comment #9) > No - which branch? ldapcsdk_50_client_branch But a superreview is required to land there. If we are going to cut a new branch soon (bug 325625) then there is no need to land this on the ldapcsdk_50_client_branch. Let's see how that goes.
Comment 11•18 years ago
|
||
Can we mark this as resolved since the tbird/seamonkey has taken 5.17 as their branch point?
| Assignee | ||
Comment 12•18 years ago
|
||
(In reply to comment #11) > Can we mark this as resolved since the tbird/seamonkey has taken 5.17 as their > branch point? I'd say yes (marking so).
Status: REOPENED → RESOLVED
Closed: 19 years ago → 18 years ago
Resolution: --- → FIXED
You need to log in
before you can comment on or make changes to this bug.
Description
•