[asterisk-commits] murf: branch 1.2 r38167 -
/branches/1.2/codecs/gsm/Makefile
asterisk-commits at lists.digium.com
asterisk-commits at lists.digium.com
Mon Jul 24 10:05:56 MST 2006
Author: murf
Date: Mon Jul 24 12:05:56 2006
New Revision: 38167
URL: http://svn.digium.com/view/asterisk?rev=38167&view=rev
Log:
This fixes a compile problem for s390 as reported in bug 7253.
Tested on both an s390 and non-s390 machine.
Modified:
branches/1.2/codecs/gsm/Makefile
Modified: branches/1.2/codecs/gsm/Makefile
URL: http://svn.digium.com/view/asterisk/branches/1.2/codecs/gsm/Makefile?rev=38167&r1=38166&r2=38167&view=diff
==============================================================================
--- branches/1.2/codecs/gsm/Makefile (original)
+++ branches/1.2/codecs/gsm/Makefile Mon Jul 24 12:05:56 2006
@@ -242,7 +242,7 @@
ifneq ($(shell uname -m),sparc64)
ifneq (${PROC},arm)
ifneq ($(shell uname -m), parisc)
-ifneq (${PROC}, s390)
+ifneq ($(shell uname -m),s390)
GSM_SOURCES+= $(SRC)/k6opt.s
endif
endif
@@ -309,7 +309,9 @@
ifneq ($(shell uname -m), sparc64)
ifneq ($(shell uname -m), armv4l)
ifneq ($(shell uname -m), parisc)
+ifneq ($(shell uname -m),s390)
GSM_OBJECTS+= $(SRC)/k6opt.o
+endif
endif
endif
endif
More information about the asterisk-commits
mailing list