]> git.ipfire.org Git - ipfire-3.x.git/commitdiff
naoki: Allow diff as a filename ending for patches.
authorMichael Tremer <michael.tremer@ipfire.org>
Mon, 17 Jan 2011 12:31:01 +0000 (13:31 +0100)
committerMichael Tremer <michael.tremer@ipfire.org>
Mon, 17 Jan 2011 12:31:01 +0000 (13:31 +0100)
pkgs/Constants

index 3dc72399b11335612f618fd3c0cba4b0aefc5cf0..e882ad1b6bd48b17d0a99e142c81c0d6e1d9863e 100644 (file)
@@ -120,6 +120,8 @@ PKG_PATCHES = \
        $(foreach patch,$(wildcard $(DIR_PATCHES)/*.patch),$(notdir $(patch)))
 PKG_PATCHES += \
        $(foreach patch,$(wildcard $(DIR_PATCHES)/*.patch0),$(notdir $(patch)))
+PKG_PATCHES += \
+       $(foreach patch,$(wildcard $(DIR_PATCHES)/*.diff),$(notdir $(patch)))
 
 # Dynamic command that applies all patches
 DO_PATCHES = cd $(DIR_APP) && $(DIR_TOOLS)/patch $(foreach patch,$(PKG_PATCHES),$(DIR_PATCHES)/$(patch))