Removed uneeded portion of GNUmakefile.postamble which was causing an issue on Solaris.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@20272 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Gregory John Casamento 2004-10-31 04:05:00 +00:00
parent df0ff73e62
commit 5a54c6a664
2 changed files with 17 additions and 9 deletions

View file

@ -1,3 +1,11 @@
2004-10-31 12:04 Gregory John Casamento <greg_casamento@yahoo.com>
* GNUmakefile.postamble: Removed the after-clean clean section
which is attempting to remove directories which existed prior to
the change which moved all of the headers. While this is not
causing an issue on Linux, some other environments fail when
attempting to "make distclean".
2004-10-30 Alex Perez <aperez@student.santarosa.edu>
* Headers/AppKit/NSImage.h (+_standardImageWithName:): New method.
@ -16,10 +24,10 @@
2004-10-24 Quentin Mathe <qmathe@club-internet.fr>
* Source/NSWorkspace.m (-appIconForApp:): Fixed code to be more
generic by using -[NSBundle pathForImageResource:]. Now the method works
with NSIcon value not path based like "MyApplication.tiff".
generic by using -[NSBundle pathForImageResource:]. Now the method
works with NSIcon value not path based like "MyApplication.tiff".
2004-10-22 08:26 Gregory John Casamento <greg_casamento@yahoo.com>
2004-10-22 08:26 Gregory John Casamento <greg_casamento@yahoo.com>
* Source/NSStepperCell.m: Corrected issue with [NSStepperCell
initWithCoder:] for encoding issue with gcc 3.4.

View file

@ -66,12 +66,12 @@ before-install:: $(INSTALL_ROOT_DIR)$(GNUSTEP_MAKEFILES)/Additional
# before-clean::
# Things to do after cleaning
after-clean::
cd Headers ; cd gnustep ; cd gui ; rm -f *~
cd Headers ; cd gnustep ; \
if [ -d dps ]; then \
cd dps ; rm -f *~; \
fi
#after-clean::
# cd Headers ; cd gnustep ; cd gui ; rm -f *~
# cd Headers ; cd gnustep ; \
# if [ -d dps ]; then \
# cd dps ; rm -f *~; \
# fi
# Things to do before distcleaning
# before-distclean::