Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
e55e4f68
Commit
e55e4f68
authored
Jul 30, 2003
by
Nathanael Nerode
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* mkinstalldirs: Import autoconf 2.57 / automake 1.7 version.
From-SVN: r69950
parent
1598b5dc
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
190 additions
and
40 deletions
+190
-40
fastjar/ChangeLog
+4
-0
fastjar/mkinstalldirs
+91
-20
gcc/ChangeLog
+4
-0
gcc/mkinstalldirs
+91
-20
No files found.
fastjar/ChangeLog
View file @
e55e4f68
2003-07-29 Nathanael Nerode <neroden@gcc.gnu.org>
* mkinstalldirs: Import autoconf 2.57 / automake 1.7 version.
2003-07-11 Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at>
* README: Note that FastJar is not part of GCC.
...
...
fastjar/mkinstalldirs
View file @
e55e4f68
...
...
@@ -4,37 +4,108 @@
# Created: 1993-05-16
# Public domain
# $Id: mkinstalldirs,v 1.13 1999/01/05 03:18:55 bje Exp $
errstatus
=
0
dirmode
=
""
usage
=
"
\
Usage: mkinstalldirs [-h] [--help] [-m mode] dir ..."
# process command line arguments
while
test
$#
-gt
0
;
do
case
$1
in
-h
|
--help
|
--h
*
)
# -h for help
echo
"
$usage
"
1>&2
exit
0
;;
-m
)
# -m PERM arg
shift
test
$#
-eq
0
&&
{
echo
"
$usage
"
1>&2
;
exit
1
;
}
dirmode
=
$1
shift
;;
--
)
# stop option processing
shift
break
;;
-
*
)
# unknown option
echo
"
$usage
"
1>&2
exit
1
;;
*
)
# first non-opt arg
break
;;
esac
done
for
file
do
set
fnord
`
echo
":
$file
"
| sed
-ne
's/^:\//#/;s/^://;s/\// /g;s/^#/\//;p'
`
shift
if
test
-d
"
$file
"
;
then
shift
else
break
fi
done
case
$#
in
0
)
exit
0
;;
esac
case
$dirmode
in
''
)
if
mkdir
-p
--
.
2>/dev/null
;
then
echo
"mkdir -p --
$*
"
exec
mkdir
-p
--
"
$@
"
fi
;;
*
)
if
mkdir
-m
"
$dirmode
"
-p
--
.
2>/dev/null
;
then
echo
"mkdir -m
$dirmode
-p --
$*
"
exec
mkdir
-m
"
$dirmode
"
-p
--
"
$@
"
fi
;;
esac
for
file
do
set
fnord
`
echo
":
$file
"
| sed
-ne
's/^:\//#/;s/^://;s/\// /g;s/^#/\//;p'
`
shift
pathcomp
=
for
d
do
pathcomp
=
"
$pathcomp$d
"
case
$pathcomp
in
-
*
)
pathcomp
=
./
$pathcomp
;;
esac
pathcomp
=
for
d
do
pathcomp
=
"
$pathcomp$d
"
case
"
$pathcomp
"
in
-
*
)
pathcomp
=
./
$pathcomp
;;
esac
if
test
!
-d
"
$pathcomp
"
;
then
echo
"mkdir
$pathcomp
"
if
test
!
-d
"
$pathcomp
"
;
then
echo
"mkdir
$pathcomp
"
mkdir
"
$pathcomp
"
||
lasterr
=
$?
mkdir
"
$pathcomp
"
||
lasterr
=
$?
if
test
!
-d
"
$pathcomp
"
;
then
errstatus
=
$lasterr
else
if
test
!
-z
"
$dirmode
"
;
then
echo
"chmod
$dirmode
$pathcomp
"
lasterr
=
""
chmod
"
$dirmode
"
"
$pathcomp
"
||
lasterr
=
$?
if
test
!
-d
"
$pathcomp
"
;
then
errstatus
=
$lasterr
fi
fi
if
test
!
-z
"
$lasterr
"
;
then
errstatus
=
$lasterr
fi
fi
fi
fi
pathcomp
=
"
$pathcomp
/"
done
pathcomp
=
"
$pathcomp
/"
done
done
exit
$errstatus
# Local Variables:
# mode: shell-script
# sh-indentation: 2
# End:
# mkinstalldirs ends here
gcc/ChangeLog
View file @
e55e4f68
2003-07-29 Nathanael Nerode <neroden@gcc.gnu.org>
* mkinstalldirs: Import autoconf 2.57 / automake 1.7 version.
2003-07-29 Zack Weinberg <zack@codesourcery.com>
* c-decl.c (last_function_parm_vars, current_function_parm_vars):
...
...
gcc/mkinstalldirs
View file @
e55e4f68
...
...
@@ -4,37 +4,108 @@
# Created: 1993-05-16
# Public domain
# $Id: mkinstalldirs,v 1.1 1998/12/17 06:43:04 law Exp $
errstatus
=
0
dirmode
=
""
usage
=
"
\
Usage: mkinstalldirs [-h] [--help] [-m mode] dir ..."
# process command line arguments
while
test
$#
-gt
0
;
do
case
$1
in
-h
|
--help
|
--h
*
)
# -h for help
echo
"
$usage
"
1>&2
exit
0
;;
-m
)
# -m PERM arg
shift
test
$#
-eq
0
&&
{
echo
"
$usage
"
1>&2
;
exit
1
;
}
dirmode
=
$1
shift
;;
--
)
# stop option processing
shift
break
;;
-
*
)
# unknown option
echo
"
$usage
"
1>&2
exit
1
;;
*
)
# first non-opt arg
break
;;
esac
done
for
file
do
set
fnord
`
echo
":
$file
"
| sed
-ne
's/^:\//#/;s/^://;s/\// /g;s/^#/\//;p'
`
shift
if
test
-d
"
$file
"
;
then
shift
else
break
fi
done
case
$#
in
0
)
exit
0
;;
esac
case
$dirmode
in
''
)
if
mkdir
-p
--
.
2>/dev/null
;
then
echo
"mkdir -p --
$*
"
exec
mkdir
-p
--
"
$@
"
fi
;;
*
)
if
mkdir
-m
"
$dirmode
"
-p
--
.
2>/dev/null
;
then
echo
"mkdir -m
$dirmode
-p --
$*
"
exec
mkdir
-m
"
$dirmode
"
-p
--
"
$@
"
fi
;;
esac
for
file
do
set
fnord
`
echo
":
$file
"
| sed
-ne
's/^:\//#/;s/^://;s/\// /g;s/^#/\//;p'
`
shift
pathcomp
=
for
d
do
pathcomp
=
"
$pathcomp$d
"
case
$pathcomp
in
-
*
)
pathcomp
=
./
$pathcomp
;;
esac
pathcomp
=
for
d
do
pathcomp
=
"
$pathcomp$d
"
case
"
$pathcomp
"
in
-
*
)
pathcomp
=
./
$pathcomp
;;
esac
if
test
!
-d
"
$pathcomp
"
;
then
echo
"mkdir
$pathcomp
"
if
test
!
-d
"
$pathcomp
"
;
then
echo
"mkdir
$pathcomp
"
1>&2
mkdir
"
$pathcomp
"
||
lasterr
=
$?
mkdir
"
$pathcomp
"
||
lasterr
=
$?
if
test
!
-d
"
$pathcomp
"
;
then
errstatus
=
$lasterr
else
if
test
!
-z
"
$dirmode
"
;
then
echo
"chmod
$dirmode
$pathcomp
"
lasterr
=
""
chmod
"
$dirmode
"
"
$pathcomp
"
||
lasterr
=
$?
if
test
!
-d
"
$pathcomp
"
;
then
errstatus
=
$lasterr
fi
fi
if
test
!
-z
"
$lasterr
"
;
then
errstatus
=
$lasterr
fi
fi
fi
fi
pathcomp
=
"
$pathcomp
/"
done
pathcomp
=
"
$pathcomp
/"
done
done
exit
$errstatus
# Local Variables:
# mode: shell-script
# sh-indentation: 2
# End:
# mkinstalldirs ends here
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment