mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-05-04 05:50:26 +02:00
fix some problems (not all) with lightningize
2008-03-14 Paolo Bonzini <bonzini@gnu.org> * lightningize.in: Fix some problems (not all).
This commit is contained in:
parent
15a23d2a7c
commit
ec2d8b3092
2 changed files with 14 additions and 8 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
2008-03-14 Paolo Bonzini <bonzini@gnu.org>
|
||||||
|
|
||||||
|
* lightningize.in: Fix some problems (not all).
|
||||||
|
|
||||||
2008-03-14 Paolo Bonzini <bonzini@gnu.org>
|
2008-03-14 Paolo Bonzini <bonzini@gnu.org>
|
||||||
|
|
||||||
* lightning/i386/core-32.h: Avoid some "value computed is not used"
|
* lightning/i386/core-32.h: Avoid some "value computed is not used"
|
||||||
|
|
|
@ -32,10 +32,11 @@ PACKAGE=@PACKAGE@
|
||||||
VERSION=@VERSION@
|
VERSION=@VERSION@
|
||||||
|
|
||||||
# Directory names.
|
# Directory names.
|
||||||
prefix=@prefix@
|
prefix="@prefix@"
|
||||||
datarootdir=@datarootdir@
|
datarootdir="@datarootdir@"
|
||||||
datadir=@datadir@
|
datadir="@datadir@"
|
||||||
includedir=@includedir@
|
includedir="@includedir@"
|
||||||
|
pkgincludedir=$includedir/$PACKAGE
|
||||||
aclocaldir=${datadir}/aclocal
|
aclocaldir=${datadir}/aclocal
|
||||||
|
|
||||||
BACKENDS="@BACKENDS@"
|
BACKENDS="@BACKENDS@"
|
||||||
|
@ -190,16 +191,17 @@ for i in $file_base_names; do
|
||||||
files="$files lightning:$pkgincludedir/$i-common.h"
|
files="$files lightning:$pkgincludedir/$i-common.h"
|
||||||
done
|
done
|
||||||
for j in $BACKENDS; do
|
for j in $BACKENDS; do
|
||||||
dir=`expr $j : '\([^:]*\)' `
|
dir=`echo $j | sed -e 's,:.*,,' `
|
||||||
suffix=`expr $j : '.*:\(.*\)' `
|
suffix=`echo $j | sed -ne 's,.*:,,p' `
|
||||||
dirs="$dirs lightning/$dir"
|
dirs="$dirs lightning/$dir"
|
||||||
for i in $file_base_names; do
|
for i in $file_base_names; do
|
||||||
files="$files lightning/$j:$pkgincludedir/$j/$i$suffix.h"
|
files="$files lightning/$dir:$pkgincludedir/$dir/$i$suffix.h"
|
||||||
done
|
done
|
||||||
done
|
done
|
||||||
|
|
||||||
for dir in $dirs; do
|
for dir in $dirs; do
|
||||||
if $mkdir $dir; then :
|
if test -d $dir; then :
|
||||||
|
elif $mkdir $dir; then :
|
||||||
else
|
else
|
||||||
echo "$progname: cannot create \`$dir'" 1>&2
|
echo "$progname: cannot create \`$dir'" 1>&2
|
||||||
status=1
|
status=1
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue