diff options
author | Joe Marcus Clarke <marcus@FreeBSD.org> | 2004-12-28 03:28:02 +0000 |
---|---|---|
committer | Joe Marcus Clarke <marcus@FreeBSD.org> | 2004-12-28 03:28:02 +0000 |
commit | 89f0921b9b3d0da5fbac419fd8d15b9147bba665 (patch) | |
tree | 9029ff4fdfd7cdc904a98343d57dde3ec8bf6307 | |
parent | 2928edd19a929f4c95efca4ea5ea9b3c00daf2d7 (diff) |
We don't need to distinuish between %%LOCALBASE%% and %D anymore in the plist.
Notes
Notes:
svn path=/head/; revision=125312
-rw-r--r-- | devel/pkg-config/Makefile | 2 | ||||
-rw-r--r-- | devel/pkg-config/pkg-plist | 4 | ||||
-rw-r--r-- | devel/pkgconfig/Makefile | 2 | ||||
-rw-r--r-- | devel/pkgconfig/pkg-plist | 4 |
4 files changed, 4 insertions, 8 deletions
diff --git a/devel/pkg-config/Makefile b/devel/pkg-config/Makefile index 85f974a5103a..67d682b91141 100644 --- a/devel/pkg-config/Makefile +++ b/devel/pkg-config/Makefile @@ -25,8 +25,6 @@ LIBTOOLFLAGS= --disable-ltlibs \ CONFIGURE_ARGS= --disable-threads MAKE_ENV= PKGCONF_BUILD=yes -PLIST_SUB= LOCALBASE=${LOCALBASE} - MAN1= pkg-config.1 post-install: diff --git a/devel/pkg-config/pkg-plist b/devel/pkg-config/pkg-plist index eb5051550db8..1817d372156b 100644 --- a/devel/pkg-config/pkg-plist +++ b/devel/pkg-config/pkg-plist @@ -4,5 +4,5 @@ share/aclocal/pkg.m4 @comment The files in these directories should only be removed if you @comment remove the complete GNOME installation. If this is only an @comment upgrade, don't throw them out! -@unexec echo "If you are only upgrading, do not remove %%LOCALBASE%%/libdata/pkgconfig" -@unexec rmdir %%LOCALBASE%%/libdata/pkgconfig 2>/dev/null || true +@unexec echo "If you are only upgrading, do not remove %D/libdata/pkgconfig" +@unexec rmdir %D/libdata/pkgconfig 2>/dev/null || true diff --git a/devel/pkgconfig/Makefile b/devel/pkgconfig/Makefile index 85f974a5103a..67d682b91141 100644 --- a/devel/pkgconfig/Makefile +++ b/devel/pkgconfig/Makefile @@ -25,8 +25,6 @@ LIBTOOLFLAGS= --disable-ltlibs \ CONFIGURE_ARGS= --disable-threads MAKE_ENV= PKGCONF_BUILD=yes -PLIST_SUB= LOCALBASE=${LOCALBASE} - MAN1= pkg-config.1 post-install: diff --git a/devel/pkgconfig/pkg-plist b/devel/pkgconfig/pkg-plist index eb5051550db8..1817d372156b 100644 --- a/devel/pkgconfig/pkg-plist +++ b/devel/pkgconfig/pkg-plist @@ -4,5 +4,5 @@ share/aclocal/pkg.m4 @comment The files in these directories should only be removed if you @comment remove the complete GNOME installation. If this is only an @comment upgrade, don't throw them out! -@unexec echo "If you are only upgrading, do not remove %%LOCALBASE%%/libdata/pkgconfig" -@unexec rmdir %%LOCALBASE%%/libdata/pkgconfig 2>/dev/null || true +@unexec echo "If you are only upgrading, do not remove %D/libdata/pkgconfig" +@unexec rmdir %D/libdata/pkgconfig 2>/dev/null || true |