Updates for 0.7.5
This commit is contained in:
parent
fc84045169
commit
3d96949058
2 changed files with 6 additions and 4 deletions
|
@ -24,7 +24,7 @@ fgfs-base: fgfs-base-tar fgfs-base-zip fgfs-base-patch
|
||||||
|
|
||||||
fgfs-base-tar:
|
fgfs-base-tar:
|
||||||
(cd $(HOME); \
|
(cd $(HOME); \
|
||||||
tar czvf fgfs-base-$(VERSION)b.tar.gz \
|
tar czvf fgfs-base-$(VERSION)c.tar.gz \
|
||||||
FlightGear/[A-CE-R]* \
|
FlightGear/[A-CE-R]* \
|
||||||
FlightGear/Scenery/w120n30/w111n33 \
|
FlightGear/Scenery/w120n30/w111n33 \
|
||||||
FlightGear/Sounds \
|
FlightGear/Sounds \
|
||||||
|
@ -32,7 +32,7 @@ fgfs-base-tar:
|
||||||
|
|
||||||
fgfs-base-zip:
|
fgfs-base-zip:
|
||||||
(cd $(HOME); \
|
(cd $(HOME); \
|
||||||
zip -ryv fgfs-base-$(VERSION)b.zip \
|
zip -ryv fgfs-base-$(VERSION)c.zip \
|
||||||
FlightGear/[A-CE-R]* \
|
FlightGear/[A-CE-R]* \
|
||||||
FlightGear/Scenery/w120n30/w111n33 \
|
FlightGear/Scenery/w120n30/w111n33 \
|
||||||
FlightGear/Sounds \
|
FlightGear/Sounds \
|
||||||
|
@ -41,7 +41,7 @@ fgfs-base-zip:
|
||||||
|
|
||||||
fgfs-base-patch:
|
fgfs-base-patch:
|
||||||
(cd $(HOME); \
|
(cd $(HOME); \
|
||||||
tar --newer 5/18/2000 -czvf fgfs-base-patch-$(VERSION)b.tar.gz \
|
tar --newer 5/18/2000 -czvf fgfs-base-patch-$(VERSION)c.tar.gz \
|
||||||
FlightGear/[A-CE-R]* \
|
FlightGear/[A-CE-R]* \
|
||||||
FlightGear/Scenery/w120n30/w111n33 \
|
FlightGear/Scenery/w120n30/w111n33 \
|
||||||
FlightGear/Sounds \
|
FlightGear/Sounds \
|
||||||
|
|
|
@ -1321,7 +1321,9 @@ int main( int argc, char **argv ) {
|
||||||
// Initialize time
|
// Initialize time
|
||||||
FGPath zone( current_options.get_fg_root() );
|
FGPath zone( current_options.get_fg_root() );
|
||||||
zone.append( "Timezone" );
|
zone.append( "Timezone" );
|
||||||
SGTime *t = new SGTime( 0.0, 0.0, zone.str() );
|
SGTime *t = new SGTime( current_options.get_lon(),
|
||||||
|
current_options.get_lat(),
|
||||||
|
zone.str() );
|
||||||
|
|
||||||
// Handle potential user specified time offsets
|
// Handle potential user specified time offsets
|
||||||
time_t cur_time = t->get_cur_time();
|
time_t cur_time = t->get_cur_time();
|
||||||
|
|
Loading…
Reference in a new issue