17 lines
512 B
Makefile
17 lines
512 B
Makefile
|
|
# totem gst-inspect requires a machine id (generated by dbus). we
|
|
# don't have one yet because we are in a virgin chroot. fake one
|
|
preinstall:
|
|
mkdir -p "$(CHROOT)/var/lib/dbus"
|
|
echo 1234567890abcdef1234567890abcdef > \
|
|
"$(CHROOT)"/var/lib/dbus/machine-id
|
|
|
|
postinstall: custom.conf gdm.start
|
|
$(RM) "$(CHROOT)"/var/lib/dbus/machine-id
|
|
cp custom.conf "$(CHROOT)"/etc/X11/gdm/custom.conf
|
|
ln -sf /etc/init.d/dbus "$(CHROOT)/etc/runlevels/default/dbus"
|
|
cp gdm.start "$(CHROOT)/etc/local.d/gdm.start"
|
|
|
|
clean:
|
|
|