]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - spl/config/config.awk
UBUNTU: SAUCE: (noup) Update spl to 0.6.5.9-1, zfs to 0.6.5.9-2
[mirror_ubuntu-bionic-kernel.git] / spl / config / config.awk
CommitLineData
70e083d2
TG
1# Remove default preprocessor define's from config.h
2# PACKAGE
3# PACKAGE_BUGREPORT
4# PACKAGE_NAME
5# PACKAGE_STRING
6# PACKAGE_TARNAME
7# PACKAGE_VERSION
8# STDC_HEADERS
9# VERSION
10
11BEGIN { RS = "" ; FS = "\n" } \
12 !/.#define PACKAGE./ && \
13 !/.#define VERSION./ && \
14 !/.#define STDC_HEADERS./ \
15 { print $0"\n" }