summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Zern <jzern@google.com>2022-03-22 13:51:27 -0700
committerJames Zern <jzern@google.com>2022-03-22 13:51:27 -0700
commitf6344745d9887adb38a62a878a3b794b84240851 (patch)
tree4acc1cb5179814345df48eb2ed363d5356784236
parentbf672f23a5336cb54dbcb2e4417142139f44cc3e (diff)
downloadlibvpx-f6344745d9887adb38a62a878a3b794b84240851.tar
libvpx-f6344745d9887adb38a62a878a3b794b84240851.tar.gz
libvpx-f6344745d9887adb38a62a878a3b794b84240851.tar.bz2
libvpx-f6344745d9887adb38a62a878a3b794b84240851.zip
ads2gas*.pl: strip trailing whitespace after transforms
Change-Id: I0bea977b256e464231706c72cc14a5c8b6e90775
-rwxr-xr-xbuild/make/ads2gas.pl1
-rwxr-xr-xbuild/make/ads2gas_apple.pl1
2 files changed, 2 insertions, 0 deletions
diff --git a/build/make/ads2gas.pl b/build/make/ads2gas.pl
index 4b7a906d2..c17c4114a 100755
--- a/build/make/ads2gas.pl
+++ b/build/make/ads2gas.pl
@@ -147,6 +147,7 @@ while (<STDIN>)
s/\bMEND\b/.endm/; # No need to tell it where to stop assembling
next if /^\s*END\s*$/;
+ s/[ \t]+$//;
print;
}
diff --git a/build/make/ads2gas_apple.pl b/build/make/ads2gas_apple.pl
index af10b436a..34254f4ab 100755
--- a/build/make/ads2gas_apple.pl
+++ b/build/make/ads2gas_apple.pl
@@ -109,5 +109,6 @@ while (<STDIN>)
s/\bMEND\b/.endm/; # No need to tell it where to stop assembling
next if /^\s*END\s*$/;
+ s/[ \t]+$//;
print;
}