scripts required by configure to bypass its inabilty to use []'s inside of

configure ([] have special means to m4 *sigh*)
This commit is contained in:
Marc G. Fournier 1997-04-12 13:22:04 +00:00
parent cecfd642f5
commit 32523e4cb8
3 changed files with 6 additions and 0 deletions

1
src/scripts/convert_inc Normal file
View File

@ -0,0 +1 @@
s@ *@ @g; s@^\([^ ]\)@-I\1@; s@ \([^ ]\)@ -I\1@g

1
src/scripts/convert_lib Normal file
View File

@ -0,0 +1 @@
s@ *@ @g; s@^\([^ ]\)@-L\1@; s@ \([^ ]\)@ -L\1@g

4
src/scripts/last_field Normal file
View File

@ -0,0 +1,4 @@
{
i=split($1, a, "/")
print a[i]
}