diff options
-rw-r--r-- | ChangeLog | 9 | ||||
-rw-r--r-- | ChangeLogs/ChangeLog-03a | 9 | ||||
-rw-r--r-- | examples/DLL/Makefile.Newsweek | 6 | ||||
-rw-r--r-- | examples/DLL/Makefile.Today | 12 |
4 files changed, 21 insertions, 15 deletions
diff --git a/ChangeLog b/ChangeLog index 562ecdba6e3..e1f5b805bca 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,12 @@ +Tue Feb 11 22:19:39 2003 Krishnakumar B <kitty@cse.wustl.edu> + + * examples/DLL/Makefile.Today (SHLIB): + * examples/DLL/Makefile.Newsweek (SHLIB): + + Removed extra space at the end which caused compilation to + break. Thanks to Bill Cassanova <BCassanova@weather.com> for + reporting the problem. + Wed Feb 12 00:00:12 UTC 2003 Craig Rodrigues <crodrigu@bbn.com> * ace/OS.h: diff --git a/ChangeLogs/ChangeLog-03a b/ChangeLogs/ChangeLog-03a index 562ecdba6e3..e1f5b805bca 100644 --- a/ChangeLogs/ChangeLog-03a +++ b/ChangeLogs/ChangeLog-03a @@ -1,3 +1,12 @@ +Tue Feb 11 22:19:39 2003 Krishnakumar B <kitty@cse.wustl.edu> + + * examples/DLL/Makefile.Today (SHLIB): + * examples/DLL/Makefile.Newsweek (SHLIB): + + Removed extra space at the end which caused compilation to + break. Thanks to Bill Cassanova <BCassanova@weather.com> for + reporting the problem. + Wed Feb 12 00:00:12 UTC 2003 Craig Rodrigues <crodrigu@bbn.com> * ace/OS.h: diff --git a/examples/DLL/Makefile.Newsweek b/examples/DLL/Makefile.Newsweek index 167610a252c..282152982fd 100644 --- a/examples/DLL/Makefile.Newsweek +++ b/examples/DLL/Makefile.Newsweek @@ -10,10 +10,8 @@ -SHLIB = libNewsweek.$(SOEXT) - +SHLIB = libNewsweek.$(SOEXT) FILES = Newsweek - LSRC = $(addsuffix .cpp,$(FILES)) VLDLIBS = $(LDLIBS:%=%$(VAR)) @@ -39,5 +37,3 @@ include $(ACE_ROOT)/include/makeinclude/rules.local.GNU #---------------------------------------------------------------------------- # DO NOT DELETE THIS LINE -- g++dep uses it. # DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY. - - diff --git a/examples/DLL/Makefile.Today b/examples/DLL/Makefile.Today index c1ffa8a73be..b39ed57a37f 100644 --- a/examples/DLL/Makefile.Today +++ b/examples/DLL/Makefile.Today @@ -10,13 +10,8 @@ -SHLIB = libToday.$(SOEXT) - - -FILES = Today - - - +SHLIB = libToday.$(SOEXT) +FILES = Today LSRC = $(addsuffix .cpp,$(FILES)) VLDLIBS = $(LDLIBS:%=%$(VAR)) @@ -42,6 +37,3 @@ include $(ACE_ROOT)/include/makeinclude/rules.local.GNU #---------------------------------------------------------------------------- # DO NOT DELETE THIS LINE -- g++dep uses it. # DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY. - - - |