diff options
author | Assar Westerlund <assar@FreeBSD.org> | 2001-09-08 17:08:42 +0000 |
---|---|---|
committer | Assar Westerlund <assar@FreeBSD.org> | 2001-09-08 17:08:42 +0000 |
commit | 24ffc7e9190d1e98690b0504ddbcc9d512c18f18 (patch) | |
tree | ba0d5c0f12f802aec02e79b9c0f3f645e1304f9c /net/arla | |
parent | 4a035c452df808094c2285778468f512edb98045 (diff) |
Notes
Diffstat (limited to 'net/arla')
-rw-r--r-- | net/arla/files/patch-aa | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/net/arla/files/patch-aa b/net/arla/files/patch-aa new file mode 100644 index 000000000000..d9ddd96833de --- /dev/null +++ b/net/arla/files/patch-aa @@ -0,0 +1,34 @@ +--- util/Makefile.in.orig Sat Sep 8 18:55:41 2001 ++++ util/Makefile.in Sat Sep 8 18:56:07 2001 +@@ -78,31 +78,8 @@ + libutil_LIB: $(libutil_OBJS) + + install: all +- $(MKINSTALLDIRS) $(DESTDIR)$(libdir) $(DESTDIR)$(includedir) +- $(INSTALL_DATA) $(LIB) $(DESTDIR)$(libdir)/$(LIB) +- for i in $(HEADERS); do \ +- $(INSTALL_DATA) $(srcdir)/$$i $(DESTDIR)$(includedir)/$$i; \ +- done ; \ +- MANPAGES='$(MANPAGES)'; for x in $$MANPAGES; do \ +- n=`echo $$x | sed 's/\(.*\)\.[1-9a-zA-Z]*$$/\1/'`; \ +- e=`echo $$x | sed 's/.*\.\([1-9a-zA-Z]*\)$$/\1/'`; \ +- f=`echo $$n | sed '$(transform)'`; \ +- $(MKINSTALLDIRS) $(DESTDIR)$(mandir)/man$$e ; \ +- $(INSTALL_DATA) $(srcdir)/$$x \ +- $(DESTDIR)$(mandir)/man$$e/$$f.$$e; \ +- done + + uninstall: +- rm -f $(DESTDIR)$(libdir)/$(LIB) +- for i in $(HEADERS); do \ +- rm -f $(DESTDIR)$(includedir)/$$i; \ +- done ; \ +- MANPAGES='$(MANPAGES)'; for x in $$MANPAGES; do \ +- n=`echo $$x | sed 's/\(.*\)\.[1-9a-zA-Z]*$$/\1/'`; \ +- e=`echo $$x | sed 's/.*\.\([1-9a-zA-Z]*\)$$/\1/'`; \ +- f=`echo $$n | sed '$(transform)'`; \ +- rm -rf $(DESTDIR)$(mandir)/$$f.$$e; \ +- done + + libutil.a: $(libutil_OBJS) + $(AR) cr $@ $(libutil_OBJS) |