Changeset 229
- Timestamp:
- 04/23/08 17:48:19 (9 months ago)
- Files:
-
- home/bin/build (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
home/bin/build
r227 r229 173 173 build_configure_customize 174 174 build_in_builddir $srcdir/configure $CONFIGURE_FLAGS $* 175 elif [ -e Setup.lhs ] ; then 176 runhaskell Setup.lhs configure --user --prefix=$HOME 175 177 fi 176 178 } … … 179 181 if [ -e Makefile -o -e makefile ] ; then 180 182 build_in_builddir $MAKE $* 183 elif [ -e Setup.lhs ] ; then 184 runhaskell Setup.lhs build 181 185 fi 182 186 } 183 187 184 188 build_install () { 185 if [ -e Makefile -o -e makefile ] ; then189 if [ -e Makefile -o -e makefile ] ; then 186 190 build_in_builddir make install $* 191 elif [ -e Setup.lhs ] ; then 192 runhaskell Setup.lhs install --user 187 193 fi 188 194 }
