diff options
author | Boris Nagaev <bnagaev@gmail.com> | 2015-09-27 10:44:40 (GMT) |
---|---|---|
committer | Boris Nagaev <bnagaev@gmail.com> | 2015-09-27 10:44:40 (GMT) |
commit | ef9c905457b0ef6fce140c3576b78d9b1b377372 (patch) | |
tree | 1b513e563a88ae65856c2be682826f8499f4d252 /tools | |
parent | 4a741cf319b5df11e747a2090ebf9af990201017 (diff) | |
download | mxe-ef9c905457b0ef6fce140c3576b78d9b1b377372.zip mxe-ef9c905457b0ef6fce140c3576b78d9b1b377372.tar.gz mxe-ef9c905457b0ef6fce140c3576b78d9b1b377372.tar.bz2 |
build-pkg: add a note about fakeroot ipc problem
I faced with the problem after running build-pkg on this machine
many-many times. Finally I found this method how to fix it without
restarting the machine.
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/build-pkg.lua | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tools/build-pkg.lua b/tools/build-pkg.lua index 3a7e1a4..8cf94c8 100755 --- a/tools/build-pkg.lua +++ b/tools/build-pkg.lua @@ -23,6 +23,13 @@ In this case fakeroot and dpkg-deb are not needed. To limit number of packages being built to x, set environment variable MXE_MAX_PACKAGES to x, + +The following error: +> fakeroot, while creating message channels: Invalid argument +> This may be due to a lack of SYSV IPC support. +> fakeroot: error while starting the `faked' daemon. +can be caused by leaked ipc resources originating in fakeroot. +How to remove them: http://stackoverflow.com/a/4262545 ]] local max_packages = tonumber(os.getenv('MXE_MAX_PACKAGES')) |