diff options
author | Peter Korsgaard <jacmet@sunsite.dk> | 2008-08-04 19:08:35 +0000 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2008-08-04 19:08:35 +0000 |
commit | 3d4ac57987a0b3fc6187090b9746eb48e444ecb7 (patch) | |
tree | 96e882e2a5f8857292e3d09456f41b48468e15d5 | |
parent | a83393b2ee9e91261f9db0bd0e92a59b3b67920a (diff) | |
download | buildroot-novena-3d4ac57987a0b3fc6187090b9746eb48e444ecb7.tar.gz buildroot-novena-3d4ac57987a0b3fc6187090b9746eb48e444ecb7.zip |
Makefile.autotools.in: fix patch dir for version specific subdir
-rw-r--r-- | package/Makefile.autotools.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/Makefile.autotools.in b/package/Makefile.autotools.in index 97f53d57d..c01a73eb1 100644 --- a/package/Makefile.autotools.in +++ b/package/Makefile.autotools.in @@ -174,7 +174,7 @@ $(BUILD_DIR)/%/.stamp_patched: toolchain/patch-kernel.sh $(@D) $($(PKG)_DIR_PREFIX)/$($(PKG)_NAME) $(NAMEVER)\*.patch $(NAMEVER)\*.patch.$(ARCH) || exit 1; \ else \ toolchain/patch-kernel.sh $(@D) $($(PKG)_DIR_PREFIX)/$($(PKG)_NAME) $($(PKG)_NAME)\*.patch $($(PKG)_NAME)\*.patch.$(ARCH) || exit 1; \ - if test -d package/$($(PKG)_DIR_PREFIX)/$($(PKG)_NAME)/$(NAMEVER); then \ + if test -d $($(PKG)_DIR_PREFIX)/$($(PKG)_NAME)/$(NAMEVER); then \ toolchain/patch-kernel.sh $(@D) $($(PKG)_DIR_PREFIX)/$($(PKG)_NAME)/$(NAMEVER) \*.patch \*.patch.$(ARCH) || exit 1; \ fi; \ fi; \ |