[Pkg-voip-commits] r5302 - in /ser/trunk/debian/patches: series stop-build-on-error
marcusb-guest at alioth.debian.org
marcusb-guest at alioth.debian.org
Sun Mar 16 16:48:13 UTC 2008
Author: marcusb-guest
Date: Sun Mar 16 16:48:13 2008
New Revision: 5302
URL: http://svn.debian.org/wsvn/pkg-voip/?sc=1&rev=5302
Log:
Stop build on errors.
Added:
ser/trunk/debian/patches/stop-build-on-error
Modified:
ser/trunk/debian/patches/series
Modified: ser/trunk/debian/patches/series
URL: http://svn.debian.org/wsvn/pkg-voip/ser/trunk/debian/patches/series?rev=5302&op=diff
==============================================================================
--- ser/trunk/debian/patches/series (original)
+++ ser/trunk/debian/patches/series Sun Mar 16 16:48:13 2008
@@ -1,1 +1,2 @@
dont-link-superfluous-libs
+stop-build-on-error
Added: ser/trunk/debian/patches/stop-build-on-error
URL: http://svn.debian.org/wsvn/pkg-voip/ser/trunk/debian/patches/stop-build-on-error?rev=5302&op=file
==============================================================================
--- ser/trunk/debian/patches/stop-build-on-error (added)
+++ ser/trunk/debian/patches/stop-build-on-error Sun Mar 16 16:48:13 2008
@@ -1,0 +1,66 @@
+Make sure the build stops on compile errors.
+--- a/Makefile
++++ b/Makefile
+@@ -279,7 +279,7 @@ print-modules:
+
+ .PHONY: modules
+ modules:
+- - at for r in $(modules) "" ; do \
++ @set -e; for r in $(modules) "" ; do \
+ if [ -n "$$r" ]; then \
+ echo "" ; \
+ echo "" ; \
+@@ -289,7 +289,7 @@ modules:
+
+ $(extra_objs):
+ - at echo "Extra objs: $(extra_objs)"
+- - at for r in $(static_modules_path) "" ; do \
++ @set -e; for r in $(static_modules_path) "" ; do \
+ if [ -n "$$r" ]; then \
+ echo "" ; \
+ echo "Making static module $r" ; \
+@@ -299,7 +299,7 @@ $(extra_objs):
+
+ .PHONY: utils
+ utils:
+- - at for r in $(utils_compile) "" ; do \
++ @set -e; for r in $(utils_compile) "" ; do \
+ if [ -n "$$r" ]; then \
+ echo "" ; \
+ echo "" ; \
+@@ -382,7 +382,7 @@ sunpkg:
+
+ .PHONY: modules-doc
+ modules-doc:
+- - at for r in $(modules) "" ; do \
++ @set -e; for r in $(modules) "" ; do \
+ if [ -n "$$r" ]; then \
+ echo "" ; \
+ echo "" ; \
+@@ -446,7 +446,7 @@ install-bin: $(bin-prefix)/$(bin-dir)
+ $(INSTALL-BIN) ser $(bin-prefix)/$(bin-dir)
+
+ install-modules: modules $(modules-prefix)/$(modules-dir)
+- - at for r in $(modules_full_path) "" ; do \
++ @set -e; for r in $(modules_full_path) "" ; do \
+ if [ -n "$$r" ]; then \
+ if [ -f "$$r" ]; then \
+ $(INSTALL-TOUCH) \
+@@ -459,7 +459,7 @@ install-modules: modules $(modules-prefi
+ done
+
+ install-utils: utils $(bin-prefix)/$(bin-dir)
+- - at for r in $(utils_install) "" ; do \
++ @set -e; for r in $(utils_install) "" ; do \
+ if [ -n "$$r" ]; then \
+ if [ -f "$$r" ]; then \
+ $(INSTALL-TOUCH) \
+@@ -490,7 +490,7 @@ install-doc: $(doc-prefix)/$(doc-dir) in
+
+
+ install-modules-doc: $(doc-prefix)/$(doc-dir)
+- - at for r in $(modules_basenames) "" ; do \
++ @set -e; for r in $(modules_basenames) "" ; do \
+ if [ -n "$$r" ]; then \
+ if [ -f modules/"$$r"/README ]; then \
+ $(INSTALL-TOUCH) $(doc-prefix)/$(doc-dir)/README ; \
More information about the Pkg-voip-commits
mailing list