]> git.ipfire.org Git - ipfire-3.x.git/commitdiff
build-essentials: Fix for finding provides. Value was overwritten.
authorMichael Tremer <michael.tremer@ipfire.org>
Thu, 4 Aug 2011 10:22:58 +0000 (12:22 +0200)
committerMichael Tremer <michael.tremer@ipfire.org>
Thu, 4 Aug 2011 10:22:58 +0000 (12:22 +0200)
pkgs/build-essentials/build-essentials.nm
pkgs/build-essentials/buildsystem-tools/dependency-tracker

index 01cd8639084d4f60006bebf00c238a6783ae7320..ca9a36d7925bf0179bdb09c527acf975ac1f2d00 100644 (file)
@@ -26,7 +26,7 @@ include $(PKGROOT)/Include
 
 PKG_NAME       = build-essentials
 PKG_VER        = 1.1
-PKG_REL        = 1
+PKG_REL        = 2
 PKG_EPOCH      = 2
 PKG_ARCH       = noarch
 
index 1c29025e40b49aa1455e785d41fa8afd526a589c..8bdb839459d8c45d04524673b6fb66adb726ea36 100755 (executable)
@@ -21,7 +21,7 @@ if [ -n "${PKG_PREREQUIRES}" ]; then
 fi
 echo "requires=\"${requires}\""
 echo "provides=\"${provides}\""
-echo "provides=\"${PKG_CONFLICTS}\""
+echo "conflicts=\"${PKG_CONFLICTS}\""
 echo "obsoletes=\"${PKG_OBSOLETES}\""
 
 exit 0