Bug 376477 - wrong owner "root" for file install_manifest.txt after "make install"
Summary: wrong owner "root" for file install_manifest.txt after "make install"
Status: RESOLVED UPSTREAM
Alias: None
Product: kig
Classification: Applications
Component: general (show other bugs)
Version: unspecified
Platform: unspecified Linux
: NOR minor
Target Milestone: ---
Assignee: David E. Narvaez
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2017-02-14 14:39 UTC by Maurizio Paolini
Modified: 2017-02-16 15:04 UTC (History)
0 users

See Also:
Latest Commit:
Version Fixed In:
Sentry Crash Report:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Maurizio Paolini 2017-02-14 14:39:01 UTC
When compiling from source as a normal user (say joe), the "make install" step (that is typically invoked by "root"), creates a new file named install_manifest.txt owned by root in the source directory, which is typically owned by joe.
This is not good, and in some situations (NFS mounted home directory with root-squashing) would cause an error during the "make install".

Perhaps this is not a kig issue only.
Comment 1 Christoph Feck 2017-02-14 16:57:48 UTC
Are you sure it is installed into source directory, not in the build directory?
Comment 2 Maurizio Paolini 2017-02-14 22:54:02 UTC
This is the exact sequence of commands (as user "paolini") [omitting the stdout/stderr of "cmake",
"make", "make install":

$ git clone git@git.kde.org:kig
$ cd kig
$ cmake . -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=debugfull -DPLUGIN_INSTALL_DIR:PATH=/usr/lib/qt5/plugins
$ make
$ su
Password: ***
# make install
# exit
$ ls -l | grep root
-rw-r--r-- 1 root    root     18579 14 feb 23.51 install_manifest.txt

Perhaps there is something wrong in the cmake options that I use...
Comment 3 Christoph Feck 2017-02-16 14:16:18 UTC
Well, you are not using a separate build directory. If you are not allowed to create root files in /home, use a /tmp directory as the build directory.

cd /home/user
git clone kig
mkdir /tmp/kig-build
cd /tmp/kig-build
cmake -DCMAKE_INSTALL_PREFIX=/usr /home/user/kig
make
sudo make install
cd /home/user
rm -rf /tmp/kig-build

I doubt cmake can be changed to create the "install_manifest.txt" during the building, instead of during the installation, but you could report this issue to cmake developers via https://cmake.org/Bug
Comment 4 Maurizio Paolini 2017-02-16 15:04:48 UTC
(In reply to Christoph Feck from comment #3)
> Well, you are not using a separate build directory. If you are not allowed
> to create root files in /home, use a /tmp directory as the build directory.

Thank you.  I am still not used to the concept of a "build" directory.
I think the "old style" sequence

./configure
make
make install

separated build stage (all user-owned files) from eht "install stage"
(everything new is owned by root).

One question: even if I have permissions to create root-owned files in my home,
still it seems to me that mixing user-owned with root-owned files in the same
place (be it /tmp/ or the user /home/user) is not wise.  But I guess this is
a cmake issue.

Another approach would be that the install_manifest.txt be created
with "user" as the owner...

> cd /home/user
> git clone kig
> mkdir /tmp/kig-build
> cd /tmp/kig-build
> cmake -DCMAKE_INSTALL_PREFIX=/usr /home/user/kig
> make
> sudo make install
> cd /home/user
> rm -rf /tmp/kig-build

I tried to report this issue to the cmake developers.  Bug reporting moved to:

https://gitlab.kitware.com/cmake/cmake/issues

> I doubt cmake can be changed to create the "install_manifest.txt" during the
> building, instead of during the installation, but you could report this
> issue to cmake developers via https://cmake.org/Bug