blob: 10325a18c3cb79a393f9fb856218bac9f80ebb23 [file] [log] [blame]
Mike Dodd8cfa7022010-11-17 11:12:26 -08001
2SUBDIRS =
3
4if BUILD_JVMTI_AGENT
5SUBDIRS += jvmti
6endif
7
8if BUILD_JVMPI_AGENT
9SUBDIRS += jvmpi
10endif
11
12install-exec-hook:
13 @getent passwd oprofile >/dev/null || ( \
14 echo "****************************************************************" ; \
15 echo "* WARNING:" ; \
16 echo "* Create the 'oprofile' user account to enable profiling of JITed code." ; \
17 echo "****************************************************************") ;
18 @getent group oprofile >/dev/null || ( \
19 echo "****************************************************************" ; \
20 echo "* WARNING:" ; \
21 echo "* Create the 'oprofile' group to enable profiling of JITed code." ; \
22 echo "****************************************************************") ;
23 @test -z `id -gn oprofile 2>/dev/null` || \
24 test `id -gn oprofile 2>/dev/null` = "oprofile" || ( \
25 echo "****************************************************************" ; \
26 echo "* WARNING:" ; \
27 echo "* The special user 'oprofile' must have the default group set to 'oprofile'." ; \
28 echo "****************************************************************") ;
29
30