summaryrefslogtreecommitdiff
path: root/ftp/omi/files
diff options
context:
space:
mode:
authorAndrey A. Chernov <ache@FreeBSD.org>1998-03-08 04:46:20 +0000
committerAndrey A. Chernov <ache@FreeBSD.org>1998-03-08 04:46:20 +0000
commit0589c7e87824c4f66011b87bccec21f3e03896f0 (patch)
tree43469eb0c2ca1adca2dba6af82986eab53a47739 /ftp/omi/files
parentUpdate to 3.1.1 (due to missing distfile). Though I'm the maintainer (diff)
omi - yet one FTP mirroring tool
Notes
Notes: svn path=/head/; revision=10069
Diffstat (limited to 'ftp/omi/files')
-rw-r--r--ftp/omi/files/patch-aa51
1 files changed, 51 insertions, 0 deletions
diff --git a/ftp/omi/files/patch-aa b/ftp/omi/files/patch-aa
new file mode 100644
index 000000000000..3e2c066f4b91
--- /dev/null
+++ b/ftp/omi/files/patch-aa
@@ -0,0 +1,51 @@
+*** Makefile.orig Thu Feb 19 03:43:21 1998
+--- Makefile Sun Mar 8 07:21:37 1998
+***************
+*** 12,18 ****
+ # Normally you should not have to change anything else.
+ #
+
+! PREFIX=/usr/local
+ BINDIR=$(PREFIX)/bin
+ MANDIR=$(PREFIX)/man
+ SECTION=1
+--- 12,18 ----
+ # Normally you should not have to change anything else.
+ #
+
+! PREFIX?=/usr/local
+ BINDIR=$(PREFIX)/bin
+ MANDIR=$(PREFIX)/man
+ SECTION=1
+***************
+*** 61,68 ****
+
+ UTILS=utils
+ OBJS=omi.o cfg.o ftp.o dir.o mir.o stt.o lst.o rex.o
+! LDFLAGS=-g $(LINKFLAGS)
+! CFLAGS=-g -I$(UTILS) $(COMPFLAGS)
+
+ #all: makeutils omi omi.man
+ all: makeutils omi
+--- 61,70 ----
+
+ UTILS=utils
+ OBJS=omi.o cfg.o ftp.o dir.o mir.o stt.o lst.o rex.o
+! LDFLAGS+= $(LINKFLAGS)
+! CFLAGS+= $(COMPFLAGS)
+! G_CFLAGS:= $(CFLAGS)
+! CFLAGS+= -I$(UTILS)
+
+ #all: makeutils omi omi.man
+ all: makeutils omi
+***************
+*** 84,87 ****
+
+ makeutils:
+ @cd $(UTILS); \
+! $(MAKE) LDFLAGS='-g $(LINKFLAGS)' CFLAGS='-g $(COMPFLAGS)'
+--- 86,89 ----
+
+ makeutils:
+ @cd $(UTILS); \
+! $(MAKE) LDFLAGS='$(LDFLAGS)' CFLAGS='$(G_CFLAGS)'