View | Details | Raw Unified | Return to bug 29390
Collapse All | Expand All

(-)files/patch-Makefile.in (+28 lines)
Added Link Here
1
--- Makefile.in.orig	Sun Apr  1 06:48:18 2001
2
+++ Makefile.in	Thu Jul 26 19:47:05 2001
3
@@ -47,7 +47,7 @@
4
 
5
 # C compiler options: make's built-in rules use this variable
6
 
7
-CFLAGS = -O2 -fsigned-char -fomit-frame-pointer -pipe
8
+CFLAGS += -fsigned-char -fomit-frame-pointer -pipe
9
 
10
 # You may have to include some extra libraries
11
 # for some systems
12
@@ -101,11 +101,11 @@
13
 
14
 	$(INSTALL_PROGRAM) -s termidx $(package_prefix)$(bindir)
15
 
16
-	if [ -a $(package_prefix)$(sysconfdir)/joerc ]; then echo; else $(INSTALL_DATA) joerc $(package_prefix)$(sysconfdir); fi
17
-	if [ -a $(package_prefix)$(sysconfdir)/jmacsrc ]; then echo; else $(INSTALL_DATA) jmacsrc $(package_prefix)$(sysconfdir); fi
18
-	if [ -a $(package_prefix)$(sysconfdir)/jstarrc ]; then echo; else $(INSTALL_DATA) jstarrc $(package_prefix)$(sysconfdir); fi
19
-	if [ -a $(package_prefix)$(sysconfdir)/rjoerc ]; then echo; else $(INSTALL_DATA) rjoerc $(package_prefix)$(sysconfdir); fi
20
-	if [ -a $(package_prefix)$(sysconfdir)/jpicorc ]; then echo; else $(INSTALL_DATA) jpicorc $(package_prefix)$(sysconfdir); fi
21
+	if [ -e $(package_prefix)$(sysconfdir)/joerc.dist ]; then echo; else $(INSTALL_DATA) joerc $(package_prefix)$(sysconfdir)/joerc.dist; fi
22
+	if [ -e $(package_prefix)$(sysconfdir)/jmacsrc.dist ]; then echo; else $(INSTALL_DATA) jmacsrc $(package_prefix)$(sysconfdir)/jmacsrc.dist; fi
23
+	if [ -e $(package_prefix)$(sysconfdir)/jstarrc.dist ]; then echo; else $(INSTALL_DATA) jstarrc $(package_prefix)$(sysconfdir)/jstarrc.dist; fi
24
+	if [ -e $(package_prefix)$(sysconfdir)/rjoerc.dist ]; then echo; else $(INSTALL_DATA) rjoerc $(package_prefix)$(sysconfdir)/rjoerc.dist; fi
25
+	if [ -e $(package_prefix)$(sysconfdir)/jpicorc.dist ]; then echo; else $(INSTALL_DATA) jpicorc $(package_prefix)$(sysconfdir)/jpicorc.dist; fi
26
 
27
 	rm -f $(package_prefix)$(man1dir)/joe.1
28
 	$(INSTALL_DATA) joe.1 $(package_prefix)$(man1dir)

Return to bug 29390