wok-current diff rocrail/receipt @ rev 3995

h8300-gcc: fix FSH
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Aug 30 13:02:52 2009 +0200 (2009-08-30)
parents f61a1715700d
children 0588160a6878
line diff
     1.1 --- a/rocrail/receipt	Wed Aug 19 10:22:01 2009 +0000
     1.2 +++ b/rocrail/receipt	Sun Aug 30 13:02:52 2009 +0200
     1.3 @@ -19,12 +19,6 @@
     1.4  # Rules to configure and make the package.
     1.5  compile_rules()
     1.6  {
     1.7 -	# Determine if TOOLPREFIX has been defined in tazwok.conf as it should
     1.8 -	if [ -z "$TOOLPREFIX" ] ; then
     1.9 -		# Provide a default TOOLPREFIX value
    1.10 -		TOOLPREFIX=i486-pc-linux-gnu-
    1.11 -	fi
    1.12 -
    1.13  	mv Rocrail-Act-1.2 $src
    1.14  	rm -r -f $src/.bzr $src/.settings
    1.15  
    1.16 @@ -34,7 +28,7 @@
    1.17  	rm -r -f rocrail
    1.18  
    1.19  	cd $src
    1.20 -	make &&
    1.21 +	make TOOLPREFIX=$TOOLPREFIX &&
    1.22  	make DESTDIR=$src/_pkg PREFIX=/usr install &&
    1.23  	sed -e 's|^Categories=[^$]*$|Categories=Application;Railroad;|g' -i $src/_pkg/usr/share/applications/*.desktop
    1.24  }