mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-08-03 17:59:07 -04:00
15 lines
550 B
Plaintext
15 lines
550 B
Plaintext
$NetBSD: patch-ac,v 1.1.1.1 2002/05/31 13:00:04 seb Exp $
|
|
|
|
--- Makefile.orig Tue Jul 7 00:31:14 1998
|
|
+++ Makefile Mon Dec 20 23:45:52 1999
|
|
@@ -15,5 +15,8 @@
|
|
rm -f genMakefile
|
|
|
|
genMakefile: protoMakefile config.h
|
|
- awk -f extrpar `grep 'configs/.*\.h' config.h | sed 's/.*\(configs\/.*\.h\).*/\1/'` > genMakefile
|
|
+ rm -f genMakefile
|
|
+ cp config.h junk.c
|
|
+ awk -f extrpar `cc -E junk.c | sed -n 's/^#[^"]*"\([^/][^"]*onfigs[^"]*\)".*/\1/p' | sort | uniq` > genMakefile
|
|
+ rm -f junk.c
|
|
awk -f extrpar config.h | cat - protoMakefile >> genMakefile
|