libcvd-members
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[libcvd-members] libcvd configure configure.in


From: Edward Rosten
Subject: [libcvd-members] libcvd configure configure.in
Date: Wed, 08 Aug 2007 21:07:15 +0000

CVSROOT:        /cvsroot/libcvd
Module name:    libcvd
Changes by:     Edward Rosten <edrosten>        07/08/08 21:07:15

Modified files:
        .              : configure configure.in 

Log message:
        Fixed a bug in missing programs list. Some cleanup in options display

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/libcvd/configure?cvsroot=libcvd&r1=1.90&r2=1.91
http://cvs.savannah.gnu.org/viewcvs/libcvd/configure.in?cvsroot=libcvd&r1=1.90&r2=1.91

Patches:
Index: configure
===================================================================
RCS file: /cvsroot/libcvd/libcvd/configure,v
retrieving revision 1.90
retrieving revision 1.91
diff -u -b -r1.90 -r1.91
--- configure   8 Aug 2007 16:31:28 -0000       1.90
+++ configure   8 Aug 2007 21:07:14 -0000       1.91
@@ -10368,7 +10368,7 @@
 echo $options
 echo
 echo Missing options for $host_os:
-echo $options $all_options $os_options |  tr ' ' '\n' | sort | uniq -u | tr 
'\n' ' '; echo
+echo $options $all_options $os_options |  tr ' ' '\n' | sort | uniq -u | xargs 
echo
 echo
 echo Dodgy things:
 echo $dodginess_options
@@ -10377,7 +10377,7 @@
 echo $simd_options
 echo
 echo Missing SIMD support for $host:
-echo $simd_possible_options $simd_options | tr ' ' '\n' |  sort | uniq -u | tr 
'\n' ' '; echo
+echo $simd_possible_options $simd_options | tr ' ' '\n' |  sort | uniq -u | 
xargs echo
 echo
 
 
@@ -10387,8 +10387,7 @@
 echo $progs | sed -e's!progs/!!g'
 echo
 echo Missing programs:
-progs1="`echo "$progs" | tr ' ' '\n' `"
-echo "$progs1 $D_PROGS" |  awk '{print $1}' | sort | uniq -u | sed 
-e's!progs/!!'g  | tr '\n' ' '; echo
+echo "$progs $D_PROGS" | xargs -n1 echo | awk -F/ '/progs/{print $2}' |  sort  
| uniq -u | xargs echo
 echo
 
 echo Debug:

Index: configure.in
===================================================================
RCS file: /cvsroot/libcvd/libcvd/configure.in,v
retrieving revision 1.90
retrieving revision 1.91
diff -u -b -r1.90 -r1.91
--- configure.in        8 Aug 2007 16:31:28 -0000       1.90
+++ configure.in        8 Aug 2007 21:07:15 -0000       1.91
@@ -1237,7 +1237,7 @@
 echo $options
 echo
 echo Missing options for $host_os:
-echo $options $all_options $os_options |  tr ' ' '\n' | sort | uniq -u | tr 
'\n' ' '; echo
+echo $options $all_options $os_options |  tr ' ' '\n' | sort | uniq -u | xargs 
echo
 echo 
 echo Dodgy things:
 echo $dodginess_options 
@@ -1246,7 +1246,7 @@
 echo $simd_options
 echo
 echo Missing SIMD support for $host:
-echo $simd_possible_options $simd_options | tr ' ' '\n' |  sort | uniq -u | tr 
'\n' ' '; echo
+echo $simd_possible_options $simd_options | tr ' ' '\n' |  sort | uniq -u | 
xargs echo
 echo
 
 changequote([,])
@@ -1256,8 +1256,7 @@
 echo $progs | sed -e's!progs/!!g'
 echo 
 echo Missing programs:
-progs1="`echo "$progs" | tr ' ' '\n' `"
-echo "$progs1 $D_PROGS" |  awk '{print $1}' | sort | uniq -u | sed 
-e's!progs/!!'g  | tr '\n' ' '; echo
+echo "$progs $D_PROGS" | xargs -n1 echo | awk -F/ '/progs/{print $2}' |  sort  
| uniq -u | xargs echo
 echo
 
 echo Debug:




reply via email to

[Prev in Thread] Current Thread [Next in Thread]