mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-08-03 17:59:07 -04:00
20 lines
583 B
Plaintext
20 lines
583 B
Plaintext
$NetBSD: patch-bitmaps_Imakefile,v 1.1 2013/08/15 00:05:44 gsutre Exp $
|
|
|
|
Really protect /* in the assignment of SRCS. Fixes the following error:
|
|
|
|
making Makefiles in bitmaps...
|
|
mv -f Makefile Makefile.bak
|
|
In file included from /usr/pkg/lib/X11/config/Imake.tmpl:2170:0,
|
|
from Imakefile.c:16:
|
|
./Imakefile:2:0: error: unterminated comment
|
|
|
|
--- bitmaps/Imakefile.orig 2002-11-14 10:09:21.000000000 +0000
|
|
+++ bitmaps/Imakefile
|
|
@@ -1,5 +1,5 @@
|
|
MISC = Imakefile
|
|
-SRCS = *\/*
|
|
+SRCS = *'/'*
|
|
|
|
makelist:
|
|
sh -c 'for i in '"$(TEXT) $(SRCS) $(MISC) $(HDRS)"' ; do \
|