Add notice. I don't know if this should be considered a bug report or not.

mrrhq 2017-01-09 15:09:36 -08:00
parent f3c49f8b0b
commit 242bffb0c4

@ -26,6 +26,12 @@ cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr/ -DSOURCE_WLPROTO=O
make
sudo make install
````
**TODO: Installing packages using make install is NOT the Debian way of doing things, and could break the system!**
Read here: https://wiki.debian.org/DontBreakDebian#Don.27t_.27make_install.27
Instructions should either be updated to be installed to /usr/local prefix instead, or somehow make wlc library run locally along with the sway binary.
Note: libxcb-emwh-dev is not included as a dependency in the install script, but I found that CMake refused to generate the necessary files without it. On Debian Jessie systems, substitute `libinput10` for `libinput5`.
Finally, we can install sway itself.