diff options
author | Thomas Gellekum <tg@FreeBSD.org> | 1999-08-23 12:00:46 +0000 |
---|---|---|
committer | Thomas Gellekum <tg@FreeBSD.org> | 1999-08-23 12:00:46 +0000 |
commit | 60607b205392abf5f904ce6fc0987a7bfd432e1b (patch) | |
tree | 6d18e27517019da0b463ab970bab89a30726cb8d /lang/python15 | |
parent | 4aa17879ef8005724b186a4faf01fdcd4def7fdf (diff) |
Use `read -e', so makesetup groks continuation lines.
PR: 13276
Submitted by: Randall Hopper <aa8vb@ipass.net>
Notes
Notes:
svn path=/head/; revision=20908
Diffstat (limited to 'lang/python15')
-rw-r--r-- | lang/python15/files/patch-ag | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/lang/python15/files/patch-ag b/lang/python15/files/patch-ag new file mode 100644 index 000000000000..5e2feb78c0d3 --- /dev/null +++ b/lang/python15/files/patch-ag @@ -0,0 +1,11 @@ +--- Modules/makesetup.orig Fri Dec 11 02:10:29 1998 ++++ Modules/makesetup Mon Aug 23 13:28:50 1999 +@@ -101,7 +101,7 @@ + LIBS= + LOCALLIBS= + BASELIBS= +- while read line ++ while read -e line + do + # Output DEFS in reverse order so first definition overrides + case $line in |