blob: 9e355c3699129a88d6bf1d736a5de45d52b3f83b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#!/usr/bin/make -f
# get the various DEB_BUILD/DEB_HOST variables
include /usr/share/dpkg/architecture.mk
export DEB_LDFLAGS_MAINT_APPEND=-Wl,-z,defs -Wl,--as-needed -Wl,-O1
export DEB_BUILD_MAINT_OPTIONS=hardening=+all
override_dh_install:
chmod 755 debian/xfce4-session/etc/xdg/xfce4/xinitrc
find debian/xfce4-session/usr/lib -name '*.la' -delete
dh_install
# default backend for Linux and Hurd
BACKEND=linux
ifeq ($(DEB_BUILD_ARCH_OS),kfreebsd)
BACKEND=freebsd
endif
override_dh_auto_configure:
dh_auto_configure -- --disable-legacy-sm --with-backend=$(BACKEND)
%:
dh $@
|