diff options
Diffstat (limited to 'source/kde')
-rw-r--r-- | source/kde/kde/build/cantor | 2 | ||||
-rw-r--r-- | source/kde/kde/build/kig | 2 | ||||
-rw-r--r-- | source/kde/kde/build/kitinerary | 2 | ||||
-rw-r--r-- | source/kde/kde/build/okular | 2 | ||||
-rwxr-xr-x | source/kde/kde/kde.SlackBuild | 5 |
5 files changed, 8 insertions, 5 deletions
diff --git a/source/kde/kde/build/cantor b/source/kde/kde/build/cantor index 0cfbf088..d00491fd 100644 --- a/source/kde/kde/build/cantor +++ b/source/kde/kde/build/cantor @@ -1 +1 @@ -2 +1 diff --git a/source/kde/kde/build/kig b/source/kde/kde/build/kig index 0cfbf088..d00491fd 100644 --- a/source/kde/kde/build/kig +++ b/source/kde/kde/build/kig @@ -1 +1 @@ -2 +1 diff --git a/source/kde/kde/build/kitinerary b/source/kde/kde/build/kitinerary index 0cfbf088..d00491fd 100644 --- a/source/kde/kde/build/kitinerary +++ b/source/kde/kde/build/kitinerary @@ -1 +1 @@ -2 +1 diff --git a/source/kde/kde/build/okular b/source/kde/kde/build/okular index 0cfbf088..d00491fd 100644 --- a/source/kde/kde/build/okular +++ b/source/kde/kde/build/okular @@ -1 +1 @@ -2 +1 diff --git a/source/kde/kde/kde.SlackBuild b/source/kde/kde/kde.SlackBuild index 5c7dec06..459165b0 100755 --- a/source/kde/kde/kde.SlackBuild +++ b/source/kde/kde/kde.SlackBuild @@ -40,6 +40,7 @@ PRECHECK=${PRECHECK:-"no"} # don't let the script check the available sources. CHECKOUT=${CHECKOUT:-"no"} # don't let the script checkout missing sources. GRACETME=${GRACETME:-"10"} # grace time to change your mind before build starts. SKIPBUILT=${SKIPBUILT:-"no"} # skip building already built packages. +EXITFAIL=${EXITFAIL:-"yes"} # exit if a package fails to build. KDEGITURI="git://anongit.kde.org" @@ -559,7 +560,9 @@ do if [ -z "$PRINT_PACKAGE_NAME" ]; then echo "${module} failed to build." fi - exit 1 + if [ "$EXITFAIL" = "yes" ]; then + exit 1 + fi fi cd - > /dev/null done |