From c259da6b2c5c9e574ed6f1da4d0e8ef9b6130a58 Mon Sep 17 00:00:00 2001 From: Bastian Blank Date: Fri, 17 Feb 2006 15:09:31 +0000 Subject: [PATCH] debian/rules.real: Fix link target in headers package. svn path=/dists/trunk/linux-2.6/; revision=5912 --- debian/rules.real | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian/rules.real b/debian/rules.real index 04cb4cf59..ee72e0e36 100644 --- a/debian/rules.real +++ b/debian/rules.real @@ -278,7 +278,7 @@ install-header-$(ARCH)-$(SUBARCH)-$(FLAVOUR): $(STAMPS_DIR)/build-$(ARCH)-$(SUBA mkdir "${DIR}/include/$$dir"; \ for file in $$(find "include/$$dir" -mindepth 1 -maxdepth 1); do \ if [ -e ${CURDIR}/${REF_DIR}/$$file ]; then \ - ln -s --target-directory="${DIR}/include/$$dir" "../../../${PACKAGE_NAME_HEADERS}/${REF_DIR}/$$file"; \ + ln -s --target-directory="${DIR}/include/$$dir" "../../../${PACKAGE_NAME_HEADERS}/$$file"; \ elif [ -d ${CURDIR}/${SOURCE_DIR}/$$file ]; then \ cp -a "${CURDIR}/${SOURCE_DIR}/$$file" "${DIR}/include/$$dir"; \ else \