Install fixes

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@6830 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Adam Fedor 2000-06-27 17:38:46 +00:00
parent ebcd9e2d50
commit 9e720072e4
5 changed files with 11 additions and 3 deletions

View file

@ -1,3 +1,10 @@
2000-06-27 Adam Fedor <fedor@gnu.org>
* Tools/gsdoc.m: Make sure exit status is 0 when no libxml
* Makefile.postamble: Don't make documentation on install. Can't
guarentee that library path is setup correctly yet.
2000-06-27 Richard Frith-Macdonald <rfm@gnu.org>
* Source/NSPort.m: Add default support for coding using the

View file

@ -147,7 +147,6 @@ Ordering.h \
Port.h \
RawCStream.h \
Retaining.h \
RunLoop.h \
StdioStream.h \
Stream.h \
Streaming.h \

View file

@ -62,7 +62,7 @@ $(SOURCES) $(HEADERS)
include Makefile.preamble
- include GNUmakefile.local
-include GNUmakefile.local
include $(GNUSTEP_MAKEFILES)/objc.make
include $(GNUSTEP_MAKEFILES)/tool.make

View file

@ -15,7 +15,7 @@
# after-all::
# Things to do before installing
before-install:: documentation
before-install::
# Things to do after installing
after-install::

View file

@ -2204,9 +2204,11 @@ main(int argc, char **argv)
}
#else
int
main()
{
NSLog(@"No libxml available");
return 0;
}
#endif