equal
deleted
inserted
replaced
|
1 # |
|
2 # Copyright (c) 2009-2010 Nokia Corporation and/or its subsidiary(-ies). |
|
3 # All rights reserved. |
|
4 # This component and the accompanying materials are made available |
|
5 # under the terms of the License "Eclipse Public License v1.0" |
|
6 # which accompanies this distribution, and is available |
|
7 # at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
8 # |
|
9 # Initial Contributors: |
|
10 # Nokia Corporation - initial contribution. |
|
11 # |
|
12 # Contributors: |
|
13 # |
|
14 # Description: |
|
15 # |
|
16 include settings.mk |
|
17 |
|
18 # Making sure that forcesuccess works. |
|
19 |
|
20 TALON_RECIPEATTRIBUTES:=flags='$$TALON_FLAGS' |
|
21 TALON_RETRIES:=1 |
|
22 |
|
23 export TALON_RECIPEATTRIBUTES TALON_RETRIES |
|
24 |
|
25 .PHONY: all fred |
|
26 |
|
27 all: fred |
|
28 @echo "t6-PASSED" |
|
29 |
|
30 fred: |
|
31 |TALON_FLAGS=FORCESUCCESS;|echo "Forcesuccess'd command"; exit 1 |
|
32 |
|
33 |