diff options
author | trevor <trevor@FreeBSD.org> | 2003-11-13 14:45:08 +0000 |
---|---|---|
committer | trevor <trevor@FreeBSD.org> | 2003-11-13 14:45:08 +0000 |
commit | 98d7950e05980253d33259a6aafcd5e3b6547fdb (patch) | |
tree | 1cbd7ce2d9411420b33e9f045481bd24f68ef920 /editors/ooodict-all | |
parent | a959d36850b787f6723176962c2985587b2936cb (diff) | |
download | FreeBSD-ports-98d7950e05980253d33259a6aafcd5e3b6547fdb.zip FreeBSD-ports-98d7950e05980253d33259a6aafcd5e3b6547fdb.tar.gz |
Use the FIND and XARGS macros introduced in bsd.port.mk 1.391.
Diffstat (limited to 'editors/ooodict-all')
-rw-r--r-- | editors/ooodict-all/Makefile | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/editors/ooodict-all/Makefile b/editors/ooodict-all/Makefile index 79ad658..327698a 100644 --- a/editors/ooodict-all/Makefile +++ b/editors/ooodict-all/Makefile @@ -106,7 +106,8 @@ post-install: cd ${PREFIX} && ${FIND} -s ${DICT_DIR} -type f | \ ${GREP} $${LANGUAGE}_$${COUNTRY} >> ${TMPPLIST} ; \ cd ${PREFIX} && ${FIND} -s ${DICT_DIR} -type f | \ - ${GREP} $${LANGUAGE}_$${COUNTRY} | xargs chmod 755 ; \ + ${GREP} $${LANGUAGE}_$${COUNTRY} | \ + ${XARGS} chmod 755 ; \ ${ECHO} "@unexec ${CP} ${DICT_LIST} \ ${DICT_LIST}.$${LANGUAGE}_$${COUNTRY}" >> ${TMPPLIST} ; \ ${ECHO} "@unexec \ @@ -123,10 +124,10 @@ post-install: ${ECHO} "@exec ${ECHO} \"DICT $${LANGUAGE} AT de_AT\" \ >> ${DICT_LIST}" >> ${TMPPLIST} ; \ ${ECHO_CMD} "DICT $$LANGUAGE AT $${ABRV}" >> ${DICT_LIST_INST} ; \ - cd ${PREFIX} && ${FIND} -s ${DICT_DIR} -type f | \ - ${GREP} $${LANGUAGE}_AT >> ${TMPPLIST} ; \ - cd ${PREFIX} && ${FIND} -s ${DICT_DIR} -type l | \ - ${GREP} $${LANGUAGE}_AT >> ${TMPPLIST} ; \ + cd ${PREFIX} && ${FIND} -s ${DICT_DIR} -type f \ + | ${GREP} $${LANGUAGE}_AT >> ${TMPPLIST} ; \ + cd ${PREFIX} && ${FIND} -s ${DICT_DIR} -type l \ + | ${GREP} $${LANGUAGE}_AT >> ${TMPPLIST} ; \ ${ECHO} "@unexec ${CP} ${DICT_LIST} \ ${DICT_LIST}.$${LANGUAGE}_AT" >> ${TMPPLIST} ; \ ${ECHO} "@unexec \ @@ -165,7 +166,7 @@ post-install: cd ${PREFIX} && ${FIND} -s ${DICT_DIR} -type f | \ ${GREP} hyph_$${ABRV}.dic >> ${TMPPLIST} ; \ cd ${PREFIX} && ${FIND} -s ${DICT_DIR} -type f | \ - ${GREP} hyph_$${ABRV}.dic | xargs chmod 755 ; \ + ${GREP} hyph_$${ABRV}.dic | ${XARGS} chmod 755 ; \ ${ECHO} "@unexec ${CP} ${DICT_LIST} \ ${DICT_LIST}.hyph_$${LANGUAGE}_$${COUNTRY}" >> ${TMPPLIST} ; \ ${ECHO} "@unexec \ |