diff options
author | Joe Marcus Clarke <marcus@FreeBSD.org> | 2004-11-29 20:32:37 +0000 |
---|---|---|
committer | Joe Marcus Clarke <marcus@FreeBSD.org> | 2004-11-29 20:32:37 +0000 |
commit | 6d023be3e5d54203cec18544d01122caaa81b1ac (patch) | |
tree | e0706102370a9728a1ffb6b2db2403af00527fcf | |
parent | Update to 2.4.1. (diff) |
I misread a configure variable. Correct the path to the XML catalog.
-rw-r--r-- | devel/libglade2/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/devel/libglade2/Makefile b/devel/libglade2/Makefile index 4cb7f0db2ddf..197a137fe79d 100644 --- a/devel/libglade2/Makefile +++ b/devel/libglade2/Makefile @@ -29,10 +29,10 @@ USE_LIBTOOL_VER=15 USE_GNOME= gnomehack libxml2 gtk20 INSTALLS_SHLIB= yes CONFIGURE_ARGS= --with-html-dir=${PREFIX}/share/doc \ - --disable-gtk-doc + --disable-gtk-doc \ + --with-xml-catalog=${LOCALBASE}/share/xml/catalog.ports CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" \ - XMLCATALOG="$(LOCALBASE)/share/xml/catalog.ports" + LDFLAGS="-L${LOCALBASE}/lib" PLIST_SUB= XMLCATALOG="${LOCALBASE}/bin/xmlcatalog" \ CATALOG_PORTS_XML="${LOCALBASE}/share/xml/catalog.ports" |