Hello I hope this isn't just my machine that's playing up because I'm using my netbook at the moment rather than my main PC, but...
With the latest Pike checked out from git, 'make doc' fails with this error message:
PikeParser: expected identifier, got "(" (/home/matthew/Downloads/Pike-devel/pike/src/builtin.c:5611)
Hope someone can make sense of that! Regards, larcky
P.S. no problems at all with 'make' and 'make install'
Hello
Hi.
I hope this isn't just my machine that's playing up because I'm using my netbook at the moment rather than my main PC, but...
With the latest Pike checked out from git, 'make doc' fails with this error message:
PikeParser: expected identifier, got "(" (/home/matthew/Downloads/Pike-devel/pike/src/builtin.c:5611)
Hmm... Seems I made some markup typos yesterday...
Fixed.
Hope someone can make sense of that! Regards, larcky
P.S. no problems at all with 'make' and 'make install'
Great.
Thanks for the report!
/grubba
I tried to commit two commits that contain the Inotify interface. The first one moves System.pmod to System.pmod/module.pmod. The pre-receive hook complains about git ls-tree output. Maybe that hook does not like files being renamed into diretories?
__
Counting objects: 27, done. Delta compression using up to 2 threads. Compressing objects: 100% (18/18), done. Writing objects: 100% (20/20), 6.34 KiB, done. Total 20 (delta 10), reused 2 (delta 1) remote: Checking commit 41ec1ba32db7be6bf0cea706d60ce8a344579b5d remote: Checking commit 165e4bb770143cff8a089416947db120c9f6b07c remote: Unexpected output from git ls-tree To git-pike@pike-git.lysator.liu.se:pike.git ! [remote rejected] 7.9 -> 7.9 (pre-receive hook declined) error: failed to push some refs to 'git-pike@pike-git.lysator.liu.se:pike.git'
"Unexpected output from git ls-tree" means that it failed to inspect the contents of a file, which would happen if it was a directory in that commit. The only thing that examines the contents of files (except for the .gitattributes file) is the ident check though. So the directory must have the ident attribute then?
Could you please put the result of "git format-patch" for your commits somewhere so that I can take a closer look?
sure, there are at
http://laramies.com/0001-System.pmod-moved-single-file-pmod-to-module.pmod.p... http://laramies.com/0002-System.Inotify-initial-version-merged-from-Public.S...
On Sun, 23 Jan 2011, Marcus Comstedt (ACROSS) (Hail Ilpalazzo!) @ Pike (-) developers forum wrote:
"Unexpected output from git ls-tree" means that it failed to inspect the contents of a file, which would happen if it was a directory in that commit. The only thing that examines the contents of files (except for the .gitattributes file) is the ident check though. So the directory must have the ident attribute then?
Could you please put the result of "git format-patch" for your commits somewhere so that I can take a closer look?
Ok, problem fixed, so you should be able to push now.
You might want to check the second commit for whitespace errors first though, git am said:
Applying: System.Inotify: initial version merged from Public.System.Inotify /tmp/piwt/.git/rebase-apply/patch:361: trailing whitespace. *! Add a watch for a certain file or directory and specific events. warning: 1 line adds whitespace errors.
pike-devel@lists.lysator.liu.se