appliances/x: cleanups

This commit is contained in:
Albert Hopkins 2018-12-05 17:09:59 -08:00
parent 442699acb0
commit b8c6f17e24
2 changed files with 8 additions and 3 deletions

View File

@ -1,9 +1,13 @@
xdm_files = $(wildcard xdm/*)
xdm_files := $(wildcard xdm/*)
xdm_targets := $(patsubst %,$(CHROOT)/etc/X11/%,$(xdm_files))
$(CHROOT)/etc/X11/xdm/%: xdm/%
cp $< $@
preinstall:
postinstall: $(xdm_files)
COPY xdm/* /etc/X11/xdm
postinstall: $(xdm_targets)
RUN systemctl enable xdm
clean:

View File

@ -2,3 +2,4 @@ PYTHON_TARGETS="python3_6"
PYTHON_SINGLE_TARGET="python3_6"
VIDEO_CARDS=""
INPUT_DEVICES=""
INSTALL_MASK="$INSTALL_MASK /etc/X11/xdm/Xaccess /etc/X11/xdm/xdm-config /etc/X11/xdm/Xservers"