pkgsrc-Users archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[patch] devel/ocamlgraph - fix Makefile typo



Hi,

Just came across this typo in the devel/ocamlgraph Makefile:

===
.  if ${OCAML_USE_OPT_COMPILER} == "yes"
        ${INSTALL_PROGRAM} ${WRKSRC}/editor/editor.opt ${DESTDIR}${PREFIX}/bin/graph-editor
        ${INSTALL_PROGRAM} ${WRKSRC}/dgraph/dgraph.opt ${DESTDIR}${PREFIX}/bin/graph-viewer
.  else
        ${INSTALL_PROGRAM} ${WKRSRC}/editor/editor.byte ${DESTDIR}${PREFIX}/bin/graph-editor
                           ^^^^^^^^^
        ${INSTALL_PROGRAM} ${WKRSRC}/dgraph/dgraph.byte ${DESTDIR}${PREFIX}/bin/graph-viewer
                           ^^^^^^^^^
.  endif
===

Patch attached.

Cheers, MJ

--
Michael-John Turner * mj%mjturner.net@localhost * http://mjturner.net/
diff --git devel/ocamlgraph/Makefile devel/ocamlgraph/Makefile
index 70691bf146..7c49bc3229 100644
--- devel/ocamlgraph/Makefile
+++ devel/ocamlgraph/Makefile
@@ -33,8 +33,8 @@ post-install:
 	${INSTALL_PROGRAM} ${WRKSRC}/editor/editor.opt ${DESTDIR}${PREFIX}/bin/graph-editor
 	${INSTALL_PROGRAM} ${WRKSRC}/dgraph/dgraph.opt ${DESTDIR}${PREFIX}/bin/graph-viewer
 .  else
-	${INSTALL_PROGRAM} ${WKRSRC}/editor/editor.byte ${DESTDIR}${PREFIX}/bin/graph-editor
-	${INSTALL_PROGRAM} ${WKRSRC}/dgraph/dgraph.byte ${DESTDIR}${PREFIX}/bin/graph-viewer
+	${INSTALL_PROGRAM} ${WRKSRC}/editor/editor.byte ${DESTDIR}${PREFIX}/bin/graph-editor
+	${INSTALL_PROGRAM} ${WRKSRC}/dgraph/dgraph.byte ${DESTDIR}${PREFIX}/bin/graph-viewer
 .  endif
 .endif
 


Home | Main Index | Thread Index | Old Index