diff options
author | Michael Hudson-Doyle <michael.hudson@canonical.com> | 2024-11-27 15:55:50 +1300 |
---|---|---|
committer | Michael Hudson-Doyle <michael.hudson@canonical.com> | 2024-11-27 15:55:50 +1300 |
commit | bbc8ea6de7d0f14059eb8a32ca8d929bdbb5227a (patch) | |
tree | bddada0552b06fe7093a2a49dbee3ecfc23e4d42 | |
parent | b72a3ceb97ebcdad643d44c613465243878c1820 (diff) |
add missing file
-rwxr-xr-x | debian/alltools.sh | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/debian/alltools.sh b/debian/alltools.sh new file mode 100755 index 0000000..f1661bd --- /dev/null +++ b/debian/alltools.sh @@ -0,0 +1,10 @@ +#!/bin/sh + +suffixes="-14" +tools="gcc cpp g++" + +for tool in $tools; do + for suffix in $suffixes; do + echo -n "$DEB_HOST_GNU_TYPE-$tool$suffix " + done +done |