blob: 8a5844fbb494ddcb7c1faac226418ccf412e257f (
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
|
Index: libprelude-1.0.0/bindings/Makefile.am
===================================================================
--- libprelude-1.0.0.orig/bindings/Makefile.am 2010-01-16 21:28:16.000000000 +0300
+++ libprelude-1.0.0/bindings/Makefile.am 2010-07-29 17:27:46.000000000 +0400
@@ -31,13 +31,13 @@
endif
-perl-build: perl/PreludeEasy.cxx perl-makefile
+perl-build: perl/PreludeEasy.cxx
cd perl && $(MAKE) LD_RUN_PATH="" CC="$(CXX)"
-install-exec-hook: perl-makefile
+install-exec-hook:
cd perl && $(MAKE) LD_RUN_PATH="" install
-uninstall-hook: perl-makefile
+uninstall-hook:
cd perl && $(MAKE) uninstall
Index: libprelude-1.0.0/bindings/low-level/Makefile.am
===================================================================
--- libprelude-1.0.0.orig/bindings/low-level/Makefile.am 2010-07-29 17:39:33.000000000 +0400
+++ libprelude-1.0.0/bindings/low-level/Makefile.am 2010-07-29 17:39:59.000000000 +0400
@@ -40,15 +40,15 @@
endif
-perl-build: perl/Prelude.c perl-makefile
+perl-build: perl/Prelude.c
cd perl && $(MAKE) LD_RUN_PATH=""
-install-exec-hook: perl-makefile
+install-exec-hook:
if HAVE_PERL
cd perl && $(MAKE) LD_RUN_PATH="" install
endif
-uninstall-hook: perl-makefile
+uninstall-hook:
if HAVE_PERL
cd perl && $(MAKE) uninstall
endif
|