You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I use PREFIX="/usr" (cause I want binaries in /usr/bin/)
and that gives ETCDIR to something like /usr/etc/....
that doesn't look sane but I usually just delete the PREFIX part
in ETCDIR ?= $(DESTDIR)$(PREFIX)/etc to fix it for me
INSTALL_VDEV_CONFIG uses ETCDIR which uses DESTDIR so
DESTDIR gets prepended in vdevd.conf
For me I could just INSTALL_VDEV_CONFIG := /etc/vdev
Maybe the answer is just that I should keep my own buildconf.mak
and it doesn't affect other users i.e. on devuan/debian
Thanks for good work
best regards
Scooby
The text was updated successfully, but these errors were encountered:
Thank you for bringing this to my attention. I just finished working through the same problem with DESTDIR in issue #40. Commit fe770f7 should have fixed it, but please let me know if it happens again :)
When I install with DESTDIR="/tmp/vdev-20150829"
I get in in etc/vdev/vdevd.config
in vdev/example/Makefile
Relevant for this is CONF_DIR gets substituted with INSTALL_VDEV_CONFIG
in vdvevd.conf
in buildconf.mk
For me there is two problems
and that gives ETCDIR to something like /usr/etc/....
that doesn't look sane but I usually just delete the PREFIX part
in ETCDIR ?=
DESTDIR gets prepended in vdevd.conf
For me I could just INSTALL_VDEV_CONFIG := /etc/vdev
Maybe the answer is just that I should keep my own buildconf.mak
and it doesn't affect other users i.e. on devuan/debian
Thanks for good work
best regards
Scooby
The text was updated successfully, but these errors were encountered: