Opened 15 years ago

Closed 15 years ago

Last modified 15 years ago

#3877 closed bug (invalid)

Setting timezone in UserBuildConfig no longer works

Reported by: haiqu Owned by: bonefish
Priority: normal Milestone: R1
Component: Build System Version: R1/pre-alpha1
Keywords: Cc:
Blocked By: Blocking:
Platform: x86

Description

$ jam -q install-haiku build/jam/UserBuildConfig: line 19: parse error at keyword : warning: unknown rule /boot/system/data/timezones/Australia/Melbourne

Build system is BeOS 5.1d0

Change History (10)

comment:1 by stippi, 15 years ago

Did you really open a bug report for a syntax error you made in your own UserBuildConfig? Please at least post the respective lines.

comment:2 by bonefish, 15 years ago

Resolution: invalid
Status: newclosed

comment:3 by haiqu, 15 years ago

Resolution: invalid
Status: closedreopened

I may be dumb, Stippi, but I'm not stupid. To be stupid AND dumb you'd have to be brilliant...

# Add symlink/file (timezone and keymap settings) to the image. AddSymlinkToHaikuImage home config settings

: /boot/system/data/timezones/Australia/Melbourne : timezone ;

AddFilesToHaikuImage home config settings : <keymap>American : Key_map ;

comment:4 by haiqu, 15 years ago

Woops, I don't remember commenting that out. Invalid, please close again.

comment:5 by haiqu, 15 years ago

Naah, wait a minute. That's just Trac's crappy quoting problem. It looks like this:

# Add symlink/file (timezone and keymap settings) to the image.
AddSymlinkToHaikuImage home config settings
	: /boot/system/data/timezones/Australia/Melbourne : timezone ;
AddFilesToHaikuImage home config settings : <keymap>American : Key_map ;

VALID.

comment:6 by stippi, 15 years ago

This is how it looks for me:

# overwrite default timezone and keymap
AddSymlinkToHaikuImage home config settings
	: /boot/system/data/timezones/Europe/Berlin : timezone ;

AddFilesToHaikuImage home config settings : <keymap>German : Key_map ;

And that certainly works. Can you please show your entire UserBuildConfig, specifically line 19?

comment:7 by mmlr, 15 years ago

Your syntax error obviously starts at the lines above those as jam tries to use the symlink target path as a rule. You probably miss a closing ";" on a line above those.

comment:8 by bonefish, 15 years ago

Resolution: invalid
Status: reopenedclosed

If jam reports a syntax error in your UserBuildConfig, it's a syntax error in your UserBuildConfig and not a build system problem. My guess is you missed a ";" or "}" (respectively the delimiting spaces) earlier in the file. At any rate adding the time zone symlink works.

comment:9 by haiqu, 15 years ago

Thanks Michael. The problem was indeed a missing semicolon above that point. I'm used to build tools that report on the line in which the error occurs, I guess jam isn't able to be that exact.

comment:10 by stippi, 15 years ago

Multiple points:

  • It was obvious from the beginning that the error must be in your UserBuildConfig, see my very first comment.
  • Your insisting and inability to provide sufficient info has dragged this out much longer than necessary. It costs us all time, as you no doubt know.
  • Even build tools like GCC will choke on the next statement if you forget a semicolon. If you forget it in a header after the last class declaration, it will even choke in a different file (the file where you include the header...)
  • Next time you encounter a bug that has a very high likeliness of being on your side, please double check everything before reporting it. And yes, a reported syntax error in a file you created yourself does count as very likely to be an error on your side. ;-)
  • Remember that we are an open source project where you want us to code and fix real issues, instead of spending our limited spare time on invalid bug reports.
Note: See TracTickets for help on using tickets.