diff options
author | grant <grant> | 2003-04-10 01:28:03 +0000 |
---|---|---|
committer | grant <grant> | 2003-04-10 01:28:03 +0000 |
commit | 2d65f19925e5c795e06b94bd8db069e75ae2aa28 (patch) | |
tree | c67db081e20351feb52d2ca5fbde4b2c17aa2887 /print/ja-vflib-lib | |
parent | 3905ae8de1e929b7eb3402b27cc3173598ce5afc (diff) | |
download | pkgsrc-2d65f19925e5c795e06b94bd8db069e75ae2aa28.tar.gz |
make ${PAX} usage consistent:
- group 'zrw' and 'p' args, -s last
- use the && operator consistently
- strip unneeded parens
- some whitespace cleanup
Diffstat (limited to 'print/ja-vflib-lib')
-rw-r--r-- | print/ja-vflib-lib/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/print/ja-vflib-lib/Makefile b/print/ja-vflib-lib/Makefile index ca3aba3343c..7f59962170f 100644 --- a/print/ja-vflib-lib/Makefile +++ b/print/ja-vflib-lib/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.3 2002/09/11 08:54:46 jlam Exp $ +# $NetBSD: Makefile,v 1.4 2003/04/10 01:28:23 grant Exp $ .include "Makefile.common" @@ -22,9 +22,9 @@ post-install: ${MV} ${PREFIX}/share/VFlib/${VFLIB_VERSION}/VF.h ${PREFIX}/include ${INSTALL_DATA_DIR} ${PREFIX}/share/VFlib/${VFLIB_VERSION} - cd ${WRKSRC}; ${INSTALL_DATA} COPYING COPYING.LIB README.txt.JP_EUC \ + cd ${WRKSRC} && ${INSTALL_DATA} COPYING COPYING.LIB README.txt.JP_EUC \ ${PREFIX}/share/VFlib/${VFLIB_VERSION} - cd ${WRKSRC}; ${PAX} -rw jTeX ${PREFIX}/share/VFlib/${VFLIB_VERSION} + cd ${WRKSRC} && ${PAX} -rw jTeX ${PREFIX}/share/VFlib/${VFLIB_VERSION} ${CHMOD} -R a-w ${PREFIX}/share/VFlib/${VFLIB_VERSION} .include "../../mk/bsd.pkg.mk" |