[53917] trunk/dports/devel/haskell-hinstaller/Portfile

jmr at macports.org jmr at macports.org
Thu Jul 16 10:41:03 PDT 2009


Revision: 53917
          http://trac.macports.org/changeset/53917
Author:   jmr at macports.org
Date:     2009-07-16 10:41:03 -0700 (Thu, 16 Jul 2009)
Log Message:
-----------
haskell-hinstaller: remove use of cd (#12914)

Modified Paths:
--------------
    trunk/dports/devel/haskell-hinstaller/Portfile

Modified: trunk/dports/devel/haskell-hinstaller/Portfile
===================================================================
--- trunk/dports/devel/haskell-hinstaller/Portfile	2009-07-16 17:39:56 UTC (rev 53916)
+++ trunk/dports/devel/haskell-hinstaller/Portfile	2009-07-16 17:41:03 UTC (rev 53917)
@@ -21,17 +21,14 @@
 depends_build       port:ghc
 
 configure {
-	cd ${worksrcpath}
-	system "runghc Setup.hs configure"
+	system "cd ${worksrcpath} && runghc Setup.hs configure"
 }
 
 build {
-	cd ${worksrcpath}
-	system "runghc Setup.hs build"
+	system "cd ${worksrcpath} && runghc Setup.hs build"
 }
 
 destroot {
-	cd ${worksrcpath}
-	system "runghc Setup.hs install"
+	system "cd ${worksrcpath} && runghc Setup.hs install"
 }
 
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.macosforge.org/pipermail/macports-changes/attachments/20090716/152785e6/attachment.html>


More information about the macports-changes mailing list