diff options
author | Manuel Novoa III <mjn3@codepoet.org> | 2004-09-09 10:50:57 +0000 |
---|---|---|
committer | Manuel Novoa III <mjn3@codepoet.org> | 2004-09-09 10:50:57 +0000 |
commit | 3d2c3c76a1cff591bc38a0971b30ee7e4ab9d9ee (patch) | |
tree | 935da51d77ee95870a094a5ae927b52c2c56cd48 /make/ncurses.mk | |
parent | 7e7644913a5530adab36489fd8c499f34de7eac2 (diff) |
Patch by michael tesch <tesch1@gmail.com> ...
The real problem, only caused when you have a *.patch file in the
main build directory, is that the Makefiles don't escape the globbing
operator they're passing to patch-kernel.sh. Attached is a patch to
fix that.
Diffstat (limited to 'make/ncurses.mk')
-rw-r--r-- | make/ncurses.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/make/ncurses.mk b/make/ncurses.mk index f57868e54..03d8ce663 100644 --- a/make/ncurses.mk +++ b/make/ncurses.mk @@ -5,7 +5,7 @@ # ############################################################# # Copyright (C) 2002 by Ken Restivo <ken@246gt.com> -# $Id: ncurses.mk,v 1.34 2004/09/03 00:49:33 mjn3 Exp $ +# $Id: ncurses.mk,v 1.35 2004/09/09 10:50:57 mjn3 Exp $ # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU Library General Public License as @@ -35,7 +35,7 @@ $(NCURSES_DIR)/.dist: $(DL_DIR)/$(NCURSES_SOURCE) #use the local tic and not whatever the build system was going to find. $(SED) 's~\$$srcdir/shlib tic\$$suffix~/usr/bin/tic~' \ $(NCURSES_DIR)/misc/run_tic.in - $(SOURCE_DIR)/patch-kernel.sh $(NCURSES_DIR) $(SOURCE_DIR) ncurses-*.patch + $(SOURCE_DIR)/patch-kernel.sh $(NCURSES_DIR) $(SOURCE_DIR) ncurses-\*.patch touch $(NCURSES_DIR)/.dist $(NCURSES_DIR)/.configured: $(NCURSES_DIR)/.dist |