diff options
author | korbb <korbb@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-05-05 20:34:12 +0000 |
---|---|---|
committer | korbb <korbb@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-05-05 20:34:12 +0000 |
commit | 4b07f4b1b2215439a448acc1fbdcbda1fbd13989 (patch) | |
tree | 7ef0a52f6b9834a5e741998d702edeabe70335ea /gcc/fixinc/genfixes | |
parent | c06266bb66c3fde7de4a6c10fcab7d4e33df4bb3 (diff) | |
download | gcc-4b07f4b1b2215439a448acc1fbdcbda1fbd13989.tar.gz |
Improve the matching for make target names
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@33718 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/fixinc/genfixes')
-rwxr-xr-x | gcc/fixinc/genfixes | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/fixinc/genfixes b/gcc/fixinc/genfixes index ae67610af5c..e9fa5acc027 100755 --- a/gcc/fixinc/genfixes +++ b/gcc/fixinc/genfixes @@ -70,7 +70,7 @@ AG="autogen $AG" set -e case "$1" in -inclhack.sh ) +inclhack.sh | */inclhack.sh ) if (autogen --help > /dev/null 2>&1) then echo AutoGen-ing inclhack.sh @@ -83,7 +83,7 @@ inclhack.sh ) fi ;; -fixincl.x ) +fixincl.x | */fixincl.x ) if (autogen --help > /dev/null 2>&1) then echo AutoGen-ing fixincl.x @@ -96,7 +96,7 @@ fixincl.x ) fi ;; -fixincl.sh ) +fixincl.sh | */fixincl.sh ) if (autogen --help > /dev/null 2>&1) then echo AutoGen-ing fixincl.sh @@ -109,7 +109,7 @@ fixincl.sh ) fi ;; -machname.h ) +machname.h | */machname.h ) # This script extracts from the specs file all the predefined macros # that are not in the C89 reserved namespace (the reserved namespace # is all identifiers beginnning with two underscores or one underscore |