Closed
Bug 58971
Opened 25 years ago
Closed 25 years ago
gmake clobber_all doesn't work
Categories
(Core Graveyard :: Java APIs to WebShell, defect, P3)
Tracking
(Not tracked)
RESOLVED
FIXED
People
(Reporter: edburns, Assigned: ashuk)
Details
(Whiteboard: suntrak-n6)
Attachments
(1 file)
|
3.23 KB,
patch
|
Details | Diff | Splinter Review |
If you do gmake clobber_all from mozilla/java, it doesn't successfully complete.
Furthermore, if you do gmake clobber_all in
mozilla/java/webclient/classes_spec, it doesn't remove the class directories,
it just rm's them. This is a big problem.
| Assignee | ||
Comment 1•25 years ago
|
||
| Assignee | ||
Comment 2•25 years ago
|
||
I have made changes to classes_spec/Makefile.in to remove the java .class files.
I have also created dummy clobber_all:: targets in some pluglet makefiles to
allow gmake clobber_all to work from mozilla/java
Igor, pls review the diff of the pluglet makefiles in the posted attachment
Comment 3•25 years ago
|
||
Adding Status whiteboard keyword to track all Webclient existing bugs
Whiteboard: suntrak-n6
Comment 4•25 years ago
|
||
Here is a fix for pluglets
---
===================================================================
RCS file: /cvsroot/mozilla/java/plugins/config/rules.mk,v
retrieving revision 1.2
diff -u -r1.2 rules.mk
--- rules.mk 2000/11/02 23:32:33 1.2
+++ rules.mk 2000/11/17 22:48:23
@@ -45,6 +45,8 @@
clobber:
rm -f *.class *.jar
+clobber_all: clobber
+
clean : clobber
ifneq ($(PLUGLET),)
---
Please review it.
| Assignee | ||
Comment 5•25 years ago
|
||
Igor, pls check in your fix. I'll check in the fix to the Webclient side
_Ashu
Comment 6•25 years ago
|
||
Fix was integrated into JAVADEV_RTM_20001102
Closing as fixed
Status: NEW → RESOLVED
Closed: 25 years ago
Resolution: --- → FIXED
| Assignee | ||
Comment 7•25 years ago
|
||
Hello Igor,
Your last fix does not seem to remove the files from
mozilla/dist/classes/ on running gmake clobber_all
Pls modify your makefiles so that they delete these class
files as well.
thanks much
_Ashu
Comment 8•25 years ago
|
||
Hello there.
I am using JDIRS rule in my make file for building classes
If clobber_all is not working for JDIRS what should I use instead?
| Assignee | ||
Comment 9•25 years ago
|
||
Hello Igor,
clobber_all does not seem to work for JDIRS, so I am removing the
classes/org/mozilla/* directory myself in webclient, util and dom
makefiles. You should do something similar.
Pls look at java/util/Makefile.in
thanks
_Ashu
Comment 10•25 years ago
|
||
Hello there,
I think that instead of removing classes in each and every make file we writing
mozilla rules should be fixed.
Would you please open bug against it
Comment 11•24 years ago
|
||
This bug still reproduced with mozilla branch Netscape61_RELEASE and blackwood
branch JAVADEV_6_1_20010831 under Win NT4.0, Sparc Solaris 2.8.
gmake clobber_all do not remove class directories.
Bug should be reopen.
Updated•14 years ago
|
Product: Core → Core Graveyard
You need to log in
before you can comment on or make changes to this bug.
Description
•