Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
ae84e8d0
Commit
ae84e8d0
authored
Apr 19, 1999
by
Guido van Rossum
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Patch by Drew Csillag for FreeBSD's sh, which doesn't automatically
join \-terminated lines.
parent
a7379d9a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
0 deletions
+8
-0
Modules/makesetup
Modules/makesetup
+8
-0
No files found.
Modules/makesetup
View file @
ae84e8d0
...
...
@@ -103,6 +103,14 @@ sed -e 's/[ ]*#.*//' -e '/^[ ]*$/d' |
BASELIBS
=
while
read
line
do
# to handle backslashes for sh's that don't automatically
# continue a read when the last char is a backslash
while
echo
$line
|
grep
'\\$'
>
/dev/null
do
read
extraline
line
=
`
echo
$line
|
sed
s/.
$/
/
`
$extraline
done
# Output DEFS in reverse order so first definition overrides
case
$line
in
*
=
*
)
DEFS
=
"
$line$NL$DEFS
"
;
continue
;;
...
...
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