]> git.proxmox.com Git - mirror_spl-debian.git/blob - config/config.awk
dch: close a bug and refresh timestamp.
[mirror_spl-debian.git] / config / config.awk
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
11 BEGIN { RS = "" ; FS = "\n" } \
12 !/.#define PACKAGE./ && \
13 !/.#define VERSION./ && \
14 !/.#define STDC_HEADERS./ \
15 { print $0"\n" }