blob: 4fe26adc41106eb093b57b25217f2adce97507c7 (
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
|
$NetBSD: patch-ak,v 1.1 2002/12/05 18:50:00 drochner Exp $
--- clients/Motif-2.1/xmbind/Makefile.am.orig Tue May 1 08:37:20 2001
+++ clients/Motif-2.1/xmbind/Makefile.am
@@ -4,8 +4,12 @@
if Version_2_1
bin_PROGRAMS= xmbind
-endif
+if DefaultVersion21
+bindir = $(exec_prefix)/bin
+else
bindir = $(exec_prefix)/LessTif/Motif2.1/bin
+endif
+endif
MAINTAINERCLEANFILES=Makefile.in
@@ -57,10 +61,3 @@
rm $$i; \
fi ; \
done
-
-install-data-hook:
-if DefaultVersion21
- -rm -f $(DESTDIR)$(exec_prefix)/bin/$(bin_PROGRAMS)
- (cd $(DESTDIR)$(exec_prefix)/bin && $(LN_S) ../LessTif/Motif2.1/bin/$(bin_PROGRAMS) .)
-endif
-
|