diff options
author | Fred Drake <fdrake@acm.org> | 2003-12-18 05:28:30 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2003-12-18 05:28:30 (GMT) |
commit | 2fe79783a70c89d42dae7a26af1b9718a8da302c (patch) | |
tree | b0e3948fe33a9d5c842c53fb82cce05358e245c3 /Doc/tools | |
parent | a95e87a48822ac459fddb2e81c3f7583a70a56e3 (diff) | |
download | cpython-2fe79783a70c89d42dae7a26af1b9718a8da302c.zip cpython-2fe79783a70c89d42dae7a26af1b9718a8da302c.tar.gz cpython-2fe79783a70c89d42dae7a26af1b9718a8da302c.tar.bz2 |
avoid bash-isms
Diffstat (limited to 'Doc/tools')
-rwxr-xr-x | Doc/tools/makesec.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/tools/makesec.sh b/Doc/tools/makesec.sh index 5ef4c3c..6159d6f 100755 --- a/Doc/tools/makesec.sh +++ b/Doc/tools/makesec.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/bin/sh # Simple little checker for individual libref manual sections # @@ -126,4 +126,4 @@ $converter lib $viewer lib.pdf rm -f $tmpf howto.cls pypaper.sty *.idx *.syn -rm -f lib.{aux,log} +rm -f lib.aux lib.log |