## Version: 1.1-dev-51-g812326a
***Pesky Change You Can't Ignore***
-A change has been made to where the `nqptp` `systemd` service file is placed. If you are updating from a previous version of `nqptp`, please remove the service file `nqptp.service` from the directory `/lib/systemd/system` (you'll need superuser privileges). A new service file will be installed in the correct location -- `/usr/local/lib/systemd/system` in Ubuntu 20.04 and Raspbian OS (Buster) -- during the `# make install` step.
+A change has been made to where the `nqptp` `systemd` service file is placed. If you are updating from a previous version of `nqptp`, please do the following before you update:
+1. Disable the `nqptp` service as follows:
+```
+# systemctl disable nqptp
+```
+2. Remove the service file `nqptp.service` from the directory `/lib/systemd/system` (you'll need superuser privileges). A new service file will be installed in the correct location -- `/usr/local/lib/systemd/system` in Ubuntu 20.04 and Raspbian OS (Buster) -- during the `# make install` step.
+
+After updating, re-enable the `nqptp` service as follows:
+```
+# systemctl enable nqptp
+```
**Enhancement**
* Further modify `install-exec-hook` to also use the standard `$(libdir)` variable instead of a fixed location. Thanks to [FW](https://github.com/fwcd).