diff options
author | bf <bf@FreeBSD.org> | 2012-03-06 13:51:53 +0800 |
---|---|---|
committer | bf <bf@FreeBSD.org> | 2012-03-06 13:51:53 +0800 |
commit | 727db64cf5d1cf13bef5f7c6efb10f7a05bc8d2b (patch) | |
tree | f5c24c5af3e9b316ba5c7799a5069178415c87dd /graphics | |
parent | 2e11ec191e3576665915fc7825b61488e113b6bc (diff) | |
download | freebsd-ports-gnome-727db64cf5d1cf13bef5f7c6efb10f7a05bc8d2b.tar.gz freebsd-ports-gnome-727db64cf5d1cf13bef5f7c6efb10f7a05bc8d2b.tar.zst freebsd-ports-gnome-727db64cf5d1cf13bef5f7c6efb10f7a05bc8d2b.zip |
adjust directory permissions
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/tesseract/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/graphics/tesseract/Makefile b/graphics/tesseract/Makefile index 9840e46ec7a3..fe11373c3314 100644 --- a/graphics/tesseract/Makefile +++ b/graphics/tesseract/Makefile @@ -62,7 +62,7 @@ post-patch: post-install: .ifndef NOPORTDATA - @${INSTALL_DATA} -d ${DATADIR} + @${MKDIR} ${DATADIR} .for f in ${PORTDATA:R} @${TAR} --strip-components 2 -C ${DATADIR} \ -xf ${_DISTDIR}/tesseract-ocr-3.01.${f}.tar.gz *.traineddata @@ -71,11 +71,11 @@ post-install: ${CHMOD} ${SHAREMODE} ${PORTDATA} .endif .ifndef NOPORTDOCS - @${INSTALL_DATA} -d ${DOCSDIR} + @${MKDIR} ${DOCSDIR} @cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${DOCSDIR} .endif .ifndef NOPORTEXAMPLES - @${INSTALL_DATA} -d ${EXAMPLESDIR} + @${MKDIR} ${EXAMPLESDIR} @cd ${WRKSRC} && ${INSTALL_DATA} ${PORTEXAMPLES} ${EXAMPLESDIR} .endif @${ECHO_MSG} "" |