]> git.ipfire.org Git - people/stevee/pakfire.git/blob - tools/find-common
Cleanup database and add indexes.
[people/stevee/pakfire.git] / tools / find-common
1 #!/bin/bash
2
3 . ${BASEDIR}/functions-common
4
5 # Find marker for 64 bit binaries.
6 case "$(uname -m)" in
7 i?86|x86_64)
8 mark64="()(64bit)"
9 ;;
10 *)
11 mark64=""
12 ;;
13 esac