summaryrefslogtreecommitdiff
path: root/tools/apbuild/apinit
blob: fd0642feacde512b053db9d8056fe446f706a9c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/env perl
use warnings;
use strict;

my $ARCH = $ENV{ARCH};
if (!defined $ARCH) {
    print "apinit: ARCH is not set\n";
    exit -1;
}

`cp apsymbols.h.$ARCH apsymbols.h`;