Changes between Initial Version and Version 1 of Ticket #508


Ignore:
Timestamp:
04/28/11 18:43:17 (13 years ago)
Author:
arango
Comment:

Yes, good catch. I didn't discover this one because I always use the build script. I highly recommend to everybody to use the build (build.bash or build.sh) script. This environmental variable need to be initialized after the SCRATCH_DIR is initialized.

I also corrected a tiny bug in adsen_ocean.h. Many thanks to Ha Joon Song for bringing this to my attention.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #508

    • Property ResolutionFixed
    • Property Status newclosed
  • Ticket #508 – Description

    initial v1  
    1 I'd like to report a minor bug in the latest revision 554. At the beginning of the main ''makefil''e, has been added the assignment
     1I'd like to report a minor bug in the latest revision '''554'''. At the beginning of the main '''makefile''', has been added the assignment
    22
    33{{{
     
    55}}}
    66
    7 but the SCRATCH_DIR environment variable is assigned afterward, after the end of the user-defined section. We should move the assignment of SCRATCH_DIR at the beginning, to avoid an error at compilation time, e.g.
     7but the '''SCRATCH_DIR''' environment variable is assigned afterward, after the end of the user-defined section. We should move the assignment of SCRATCH_DIR at the beginning, to avoid an error at compilation time, e.g.
    88
    99{{{
     
    1111}}}
    1212
    13 where is obvious that the value $(SCRATCH_DIR) is still null.
     13where is obvious that the value '''$(SCRATCH_DIR)''' is still null.