blob: 3134547c4d9a1df5ede086c6937c8921e394d0f2 (
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
69
|
diff --new-file --unified --recursive --text binfmtc-0.17/Makefile.am binfmtc-0.17.patch/Makefile.am
--- binfmtc-0.17/Makefile.am 2021-11-12 22:35:16.155445567 +0100
+++ binfmtc-0.17.patch/Makefile.am 2021-11-12 22:36:09.900971193 +0100
@@ -2,17 +2,14 @@
binfmtf-interpreter \
binfmtf95-interpreter \
binfmtcxx-interpreter \
- binfmtasm-interpreter \
- binfmtgcj-interpreter
+ binfmtasm-interpreter
binfmtcxx_interpreter_SOURCES=binfmtc-interpreter.c binfmtc-lang-cxx.c binfmtc.h
binfmtc_interpreter_SOURCES=binfmtc-interpreter.c binfmtc-lang-c.c binfmtc.h
binfmtf_interpreter_SOURCES=binfmtc-interpreter.c binfmtc-lang-f.c binfmtc.h
binfmtf95_interpreter_SOURCES=binfmtc-interpreter.c binfmtc-lang-f95.c binfmtc.h
binfmtasm_interpreter_SOURCES=binfmtc-interpreter.c binfmtc-lang-asm.c binfmtc.h
-binfmtgcj_interpreter_SOURCES=binfmtc-interpreter.c binfmtc-lang-gcj.c binfmtc.h
dist_bin_SCRIPTS= realcsh.c realcxxsh.cc
-dist_sbin_SCRIPTS= realksh.c
TESTS= tests/prerequisite.sh \
tests/print.sh \
@@ -20,19 +17,14 @@
tests/multisource.sh \
tests/wrongcode.sh \
tests/cxxprint.sh \
- tests/java.sh \
tests/fortran.sh \
tests/space.sh \
- tests/asm.sh \
- tests/realksh.sh \
tests/realcsh.sh \
tests/news-okay.sh
dist_man_MANS= binfmtc-interpreter.1 binfmtcxx-interpreter.1 realcsh.c.1 binfmtasm-interpreter.1 \
binfmtf-interpreter.1 \
binfmtf95-interpreter.1 \
- binfmtgcj-interpreter.1 \
- realksh.c.8 \
realcxxsh.cc.1
TESTS_ENVIRONMENT=bindir=$(bindir) \
@@ -40,25 +32,20 @@
LANG=C \
VERSION=@VERSION@
-EXTRA_DIST= autogen.sh binfmtc-init.sh binfmtc-unreg.sh \
+EXTRA_DIST= autogen.sh \
$(TESTS) \
tests/multisource.c \
tests/multisource1.c \
tests/print.c \
tests/wrongcode.c \
tests/wrongmagic.c \
- tests/asm-ppc.S \
- tests/asm-x86.S \
- tests/asm-x86_64.S \
tests/cxxprint.cxx \
- tests/javatest.java \
tests/fortran.f \
upaccho2/upaccho2.c \
upaccho2/upaccho2-webservice.c \
upaccho2/upaccho2-webservice.h
install-exec-local:
- -mkdir -p ${DESTDIR}${sbindir}
-mkdir -p ${DESTDIR}@prefix@/lib/binfmt.d
sed -e "s,[@]bindir[@],@bindir@,g" < ${srcdir}/binfmtc.conf > ${DESTDIR}@prefix@/lib/binfmt.d/binfmtc.conf
|