blob: fdc9bf42f8bfd13340173eb9531e238c9c8b47f6 (
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
diff -crB CodeAnalyst-3_3_18_0361-Public.orig/src/ca/Makefile.am CodeAnalyst-3_3_18_0361-Public/src/ca/Makefile.am
*** CodeAnalyst-3_3_18_0361-Public.orig/src/ca/Makefile.am 2012-04-13 02:41:43.000000000 -0300
--- CodeAnalyst-3_3_18_0361-Public/src/ca/Makefile.am 2012-04-22 20:44:07.437917684 -0300
***************
*** 8,19 ****
# FIXME [3.0] diffgui \
# $(CA_RELEASE_TYPE)
! install-exec-hook:
! @if test -e "scripts/Setup.sh"; then \
! scripts/Setup.sh $(DESTDIR)$(prefix); \
! fi
! uninstall-hook:
! @if test -e "scripts/Uninstall.sh"; then \
! scripts/Uninstall.sh $(DESTDIR)$(prefix);\
! fi
--- 8,19 ----
# FIXME [3.0] diffgui \
# $(CA_RELEASE_TYPE)
! #install-exec-hook:
! # @if test -e "scripts/Setup.sh"; then \
! # scripts/Setup.sh $(DESTDIR)$(prefix); \
! # fi
! #uninstall-hook:
! # @if test -e "scripts/Uninstall.sh"; then \
! # scripts/Uninstall.sh $(DESTDIR)$(prefix);\
! # fi
diff -crB CodeAnalyst-3_3_18_0361-Public.orig/src/ca_agent/jvmpi/Makefile.am CodeAnalyst-3_3_18_0361-Public/src/ca_agent/jvmpi/Makefile.am
*** CodeAnalyst-3_3_18_0361-Public.orig/src/ca_agent/jvmpi/Makefile.am 2012-04-13 02:41:43.000000000 -0300
--- CodeAnalyst-3_3_18_0361-Public/src/ca_agent/jvmpi/Makefile.am 2012-04-22 20:47:21.604593511 -0300
***************
*** 15,20 ****
libCAJVMPIA_so_SOURCES = \
jpa.cpp
! install-exec-hook:
! @/sbin/ldconfig
--- 15,20 ----
libCAJVMPIA_so_SOURCES = \
jpa.cpp
! #install-exec-hook:
! # @/sbin/ldconfig
diff -crB CodeAnalyst-3_3_18_0361-Public.orig/src/Makefile.am CodeAnalyst-3_3_18_0361-Public/src/Makefile.am
*** CodeAnalyst-3_3_18_0361-Public.orig/src/Makefile.am 2012-04-13 02:41:43.000000000 -0300
--- CodeAnalyst-3_3_18_0361-Public/src/Makefile.am 2012-04-22 20:44:57.674586720 -0300
***************
*** 8,21 ****
install-exec-hook:
@if test -e "${LIBDWARF_DIR}libdwarf.so"; then \
install -pD -m 755 ${LIBDWARF_DIR}libdwarf.so $(DESTDIR)$(prefix)/lib/libdwarf.so ; \
- /sbin/ldconfig ;\
fi
uninstall-hook:
@if test -e "${LIBDWARF_DIR}libdwarf.so"; then \
if test -e "$(DESTDIR)$(prefix)/lib/libdwarf.so"; then \
rm -f $(DESTDIR)$(prefix)/lib/libdwarf.so ; \
- /sbin/ldconfig ; \
fi ; \
fi
--- 8,19 ----
|