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/dropbear_sshd.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/dropbear_sshd.mk')
-rw-r--r-- | make/dropbear_sshd.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/make/dropbear_sshd.mk b/make/dropbear_sshd.mk index 93664e2d0..407fb5779 100644 --- a/make/dropbear_sshd.mk +++ b/make/dropbear_sshd.mk @@ -18,7 +18,7 @@ dropbear_sshd-source: $(DL_DIR)/$(DROPBEAR_SSHD_SOURCE) $(DROPBEAR_SSHD_DIR)/.unpacked: $(DL_DIR)/$(DROPBEAR_SSHD_SOURCE) $(DROPBEAR_SSHD_CAT) $(DL_DIR)/$(DROPBEAR_SSHD_SOURCE) | tar -C $(BUILD_DIR) -xvf - - $(SOURCE_DIR)/patch-kernel.sh $(DROPBEAR_SSHD_DIR) $(SOURCE_DIR) dropbear-*.patch + $(SOURCE_DIR)/patch-kernel.sh $(DROPBEAR_SSHD_DIR) $(SOURCE_DIR) dropbear-\*.patch $(SED) 's,^/\* #define DROPBEAR_MULTI.*,#define DROPBEAR_MULTI,g' $(DROPBEAR_SSHD_DIR)/options.h touch $(DROPBEAR_SSHD_DIR)/.unpacked |