diff options
author | joerg <joerg@pkgsrc.org> | 2009-02-16 18:21:24 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2009-02-16 18:21:24 +0000 |
commit | fb36e476d037796f00bc9256a9c48b08061f0d77 (patch) | |
tree | 3f54881576258ca298f0dc3f6d845f050af9e0f9 /mail/oe2mbx/patches | |
parent | c303bc2cbdf1dd1461030b9b4ea2d7d36a205393 (diff) | |
download | pkgsrc-fb36e476d037796f00bc9256a9c48b08061f0d77.tar.gz |
DESTDIR support.
Diffstat (limited to 'mail/oe2mbx/patches')
-rw-r--r-- | mail/oe2mbx/patches/patch-aa | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mail/oe2mbx/patches/patch-aa b/mail/oe2mbx/patches/patch-aa index 226a08eca3a..1ec7c72af86 100644 --- a/mail/oe2mbx/patches/patch-aa +++ b/mail/oe2mbx/patches/patch-aa @@ -1,4 +1,4 @@ -$NetBSD: patch-aa,v 1.1 2005/02/05 16:27:39 zuntum Exp $ +$NetBSD: patch-aa,v 1.2 2009/02/16 18:25:20 joerg Exp $ --- makefile.orig Sat Jun 17 17:30:36 2000 +++ makefile @@ -27,8 +27,8 @@ $NetBSD: patch-aa,v 1.1 2005/02/05 16:27:39 zuntum Exp $ install : - test -e bin/* && install bin/* $(BINDIR) && echo oe2mbx binary installed || echo oe2mbx binary not prepared - test -e lib/*.so && install lib/*.so $(LIBDIR) && install src/*.h $(INCLUDEDIR) && echo liboe library installed || echo liboe library not prepared -+ test -r bin/* && ${INSTALL_PROGRAM} bin/* $(BINDIR) && echo oe2mbx binary installed || echo oe2mbx binary not prepared -+ test -r lib/*.so && ${INSTALL_LIB} lib/*.so $(LIBDIR) && ${INSTALL_DATA} src/*.h $(INCLUDEDIR) && echo liboe library installed || echo liboe library not prepared ++ test -r bin/* && ${INSTALL_PROGRAM} bin/* ${DESTDIR}$(BINDIR) && echo oe2mbx binary installed || echo oe2mbx binary not prepared ++ test -r lib/*.so && ${INSTALL_LIB} lib/*.so ${DESTDIR}$(LIBDIR) && ${INSTALL_DATA} src/*.h ${DESTDIR}$(INCLUDEDIR) && echo liboe library installed || echo liboe library not prepared clean : - test -e bin/* && rm -f bin/* || test . - test -e lib/* && rm -f lib/* || test . |