diff options
author | Kent Boortz <kent@mysql.se> | 2000-07-25 21:01:56 +0200 |
---|---|---|
committer | Kent Boortz <kent@mysql.se> | 2000-07-25 21:01:56 +0200 |
commit | dc077532c150c6801220173f10210b74ee23eed7 (patch) | |
tree | c798c43907b5451e4c0e65b0a6cc1a4f31719177 /macos | |
parent | 279c43213532fd8dadb766c6db831ad6f5ff269c (diff) | |
download | gmp-dc077532c150c6801220173f10210b74ee23eed7.tar.gz |
Now (C) stay (C) in asm preprocessing
Diffstat (limited to 'macos')
-rwxr-xr-x | macos/configure | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/macos/configure b/macos/configure index b06038cc3..ef09d9f9e 100755 --- a/macos/configure +++ b/macos/configure @@ -209,8 +209,7 @@ foreach $file (@asm_files) { while (<ASM>) { chomp; # Remove whatever ending it was - s/\bdnl\b/;/; # Use ; comments - s/\bC\b/;/; + s/\bdnl\b/;/ or s/\bC\b/;/; # Use ; comments s/include\s*\(.*?\)//; # Don't use include macro |