diff options
Diffstat (limited to 'editors/lazarus')
-rw-r--r-- | editors/lazarus/Makefile | 6 | ||||
-rw-r--r-- | editors/lazarus/Makefile.common | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/editors/lazarus/Makefile b/editors/lazarus/Makefile index 98caba8..c9df384 100644 --- a/editors/lazarus/Makefile +++ b/editors/lazarus/Makefile @@ -110,7 +110,7 @@ do-build: post-build: @cd ${WRKSRC} && \ - ${RM} -Rf COPYING* README* debian localize.bat test *.orig *.bak startlazarus.app \ + ${RM} -R COPYING* README* debian localize.bat test *.orig *.bak startlazarus.app \ ide/Makefile*.orig ide/Makefile*.bak lcl/units components/ideintf/units \ components/synedit/units components/lazcontrols/lib @@ -119,8 +119,8 @@ pre-install: @${ECHO} "cd ${DATADIR} || exit 1 " >> ${WRKDIR}/lazarus-wrapper @${ECHO} "exec ./startlazarus" >> ${WRKDIR}/lazarus-wrapper - @${RM} -f ${PLIST} - @${RM} -f ${WRKSRC}/lcl/units + @${RM} ${PLIST} + @${RM} ${WRKSRC}/lcl/units @${RM} -r ${WRKSRC}/components/chmhelp/lhelp/lhelp.app/Contents/MacOS \ ${WRKSRC}/lazarus.app/Contents/MacOS \ ${WRKSRC}/lazarus.app/Contents/Resources/startlazarus.app/Contents/MacOS diff --git a/editors/lazarus/Makefile.common b/editors/lazarus/Makefile.common index 59731ba..df13566 100644 --- a/editors/lazarus/Makefile.common +++ b/editors/lazarus/Makefile.common @@ -61,7 +61,7 @@ do-build: ${SETENV} ${MAKE_ENV} ${MAKE_CMD} LCL_PLATFORM=${LCL_INTERFACE} pre-install: - @${RM} -f ${PLIST} + @${RM} ${PLIST} @cd ${WRKSRC}/units/${BUILDNAME}/${LCL_INTERFACE} && \ ${FIND} * -type f | ${SORT} | ${SED} -e 's|^|%%DATADIR%%/lcl/units/%%BUILDNAME%%/${LCL_INTERFACE}/|' -e 's|//|/|' >> ${PLIST} |