Ubuntu Pastebin

Paste from cjwatson at Wed, 11 Nov 2015 10:50:15 +0000

Download as text
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
#! /usr/bin/make -f

name	:= delta-eng
logs	:= deviceadd.evt deviceremove.evt dcsys32.xml omcmdlog.xml

include /usr/share/delta/delta.mk

delta_configure_flags += --enable-gcc-visibility-to-export

%:
	dh $@

override_dh_auto_build:
	dh_auto_build -- -DSIGN_JARS=FALSE -DOBFUSCATE_JARS=FALSE

override_dh_install:
	dh_install
	mkdir -p debian/dang/etc/ld.so.conf.d
        echo "${delta_libdir}" > debian/dang/etc/ld.so.conf.d/${name}.conf
        echo "${delta_libexecdir}/openmanage" >> debian/dang/etc/ld.so.conf.d/${name}.conf
Download as text