Closed
Bug 34578
Opened 25 years ago
Closed 25 years ago
compiling nsXIEngine.cpp whines about missing xpistub.h
Categories
(SeaMonkey :: Installer, defect, P3)
Tracking
(Not tracked)
VERIFIED
FIXED
M16
People
(Reporter: tomi.leppikangas, Assigned: samir_bugzilla)
Details
When compiling in separate obj-dir, building stops
on xpinstall/wizard/unix/src2 when compiling nsXIEngine.cpp. Gcc whines about
missing xpistub.h.
Looks like this is bug in Makefile.in on that dir. There is a line
sayig:
LOCAL_INCLUDES += -I../../../stub
I guess that should read:
LOCAL_INCLUDES += -I$(srcdir)/stub
This fixed that on me.
Comment 1•25 years ago
|
||
<g>, that should be:
LOCAL_INCLUDES += -I$(srcdir)/../../../stub
because srcdir is xpinstall/wizard/unix/src2
Assignee | ||
Comment 2•25 years ago
|
||
Exactly. Thank you, mj.
Status: NEW → ASSIGNED
Target Milestone: --- → M16
Reporter | ||
Comment 3•25 years ago
|
||
Ok, maybe i should use diff next time :)
Jst fixed this, marking as fixed.
Status: ASSIGNED → RESOLVED
Closed: 25 years ago
Resolution: --- → FIXED
Assignee | ||
Comment 4•25 years ago
|
||
Thanks jst.
Grace,
For verification ensure this line includes '$(srcdir)' now:
http://lxr.mozilla.org/mozilla/source/xpinstall/wizard/unix/src2/Makefile.in#55
Updated•21 years ago
|
Product: Browser → Seamonkey
You need to log in
before you can comment on or make changes to this bug.
Description
•