From f96441b9faf769c9ecdd4d338b605ea3d0cc4010 Mon Sep 17 00:00:00 2001 From: Chris Larson Date: Tue, 9 Nov 2004 00:36:47 +0000 Subject: Disable bk EOLN_NATIVE conversions on all files in packages FILESPATHs, to prevent it screwing up patches. BKrev: 4190111fA4MuVozAqwE7xOSL9fr-TA --- mailx/mailx/install.patch | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) (limited to 'mailx/mailx/install.patch') diff --git a/mailx/mailx/install.patch b/mailx/mailx/install.patch index e69de29bb2..a9500d1807 100644 --- a/mailx/mailx/install.patch +++ b/mailx/mailx/install.patch @@ -0,0 +1,33 @@ + +# +# Patch managed by http://www.mn-logistik.de/unsupported/pxa250/patcher +# + +--- mailx-8.1.2-0.20031014cvs.orig/Makefile~install ++++ mailx-8.1.2-0.20031014cvs.orig/Makefile +@@ -26,6 +26,11 @@ + EFILES= mail.rc + MFILES= mail.1 + ++bindir=/usr/bin ++mandir=/usr/share/man ++sysconfdir=/etc ++datadir=/usr/share ++ + all: $(PROG) + + beforeinstall: +@@ -52,7 +57,9 @@ + rm -f $(PROG) $(OBJS) *~ core + + install: +- install -p -c -m 755 $(PROG) $(DESTDIR)/usr/bin/ +- install -p -c -m 644 $(MFILES) $(DESTDIR)/usr/share/man/man1/ +- cd misc && install -p -c -m 644 $(EFILES) $(DESTDIR)/etc/ +- cd misc && install -p -c -m 644 $(SFILES) $(DESTDIR)/usr/share/mailx/ ++ install -d $(DESTDIR)$(bindir) $(DESTDIR)$(mandir)/man1 \ ++ $(DESTDIR)$(sysconfdir) $(DESTDIR)$(datadir)/mailx ++ install -p -c -m 755 $(PROG) $(DESTDIR)$(bindir)/ ++ install -p -c -m 644 $(MFILES) $(DESTDIR)$(mandir)/man1/ ++ cd misc && install -p -c -m 644 $(EFILES) $(DESTDIR)$(sysconfdir)/ ++ cd misc && install -p -c -m 644 $(SFILES) $(DESTDIR)$(datadir)/mailx/ -- cgit 1.2.3-korg