Closed
Bug 217160
Opened 22 years ago
Closed 22 years ago
Win build breaks with "No rule to make target clean" in NSS/PSM
Categories
(NSS :: Build, defect)
Tracking
(Not tracked)
RESOLVED
INVALID
People
(Reporter: BenB, Assigned: wtc)
Details
Version: (Derivate of) Moz 1.4
Compile: MSVC++ 6
Build breaks with:
tier_95: security/manager
make[3]: *** No rule to make target 'clean'. Stop.
make[2]: *** [.nss.cleaned] Error 2
make[1]: *** [tier_95] Error 2
make: *** [default] Error 2
What I did:
1. Checked out under Linux
2. Built in separate builddir under Linux
3. |rsync|ed the source tree to Windows build machine
4. ./configure; make -s
.mozconfig:
#tune
mk_add_options MOZILLA_OFFICIAL=1
mk_add_options BUILD_OFFICIAL=1
ac_add_options --disable-tests
ac_add_options --enable-optimize
#-O2 crashes on some systems!
ac_add_options --disable-debug
ac_add_options --disable-dtd-debug
ac_add_options --enable-strip
ac_add_options --enable-strip-libs
#system
ac_add_options --without-system-nspr
ac_add_options --without-system-zlib
ac_add_options --without-system-png
ac_add_options --without-system-mng
ac_add_options --without-system-jpeg
#extras
ac_add_options --enable-crypto
ac_add_options --enable-mathml
| Reporter | ||
Updated•22 years ago
|
OS: Linux → Windows 2000
Comment 1•22 years ago
|
||
hm, presumably is due to one of these lines in the Makefile.in:
.nss.cleaned: .nss.checkout
$(MAKE) -C $(topsrcdir)/security/coreconf $(DEFAULT_GMAKE_FLAGS) clean
$(MAKE) -C $(topsrcdir)/security/nss/lib $(DEFAULT_GMAKE_FLAGS) clean
$(MAKE) -C $(topsrcdir)/security/nss/cmd/lib $(DEFAULT_GMAKE_FLAGS) clean
$(MAKE) -C $(topsrcdir)/security/nss/cmd/shlibsign $(DEFAULT_GMAKE_FLAGS) clean
touch $@
are you sure that your srcdir contains all the Makefiles in those directories?
can you "cvs up" to verify?
| Reporter | ||
Comment 2•22 years ago
|
||
em, yes. The files don't exist on the Win machine. They do exist on the Linux
machine. The reason is pretty simple:
rsync -av --exclude "{arch}" --exclude "Makefile" ...
Yeah, right. INVALID.
Thanks, biesi. Sorry for the bogus report.
Status: NEW → RESOLVED
Closed: 22 years ago
Resolution: --- → INVALID
You need to log in
before you can comment on or make changes to this bug.
Description
•