Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
autoconf: #define the expanded version of localstatedir
Previously we defined LOCAL_STATE_DIR on the command line which relied on shell expansion, now that we define it in autoconf.h we have to expand it ourselves first. This broke the creation of the default unix socket directory and file. Without this commit autoconf.h contains: #define LOCAL_STATE_DIR "${prefix}/var" now it will contain: #define LOCAL_STATE_DIR "/var/run/suricata" (prefix respecting of course) Fixes commit b6a610d.
- Loading branch information