diff options
author | Jacques Vidrine <nectar@FreeBSD.org> | 2004-01-06 13:31:16 +0000 |
---|---|---|
committer | Jacques Vidrine <nectar@FreeBSD.org> | 2004-01-06 13:31:16 +0000 |
commit | fa3a543f45f2f935aec7f0ed5384ca8f29ac85ce (patch) | |
tree | b6a0df06cc813ceb972044c0ac7d938f131fafca | |
parent | - Update to version 1.06 (diff) |
Correct a logic error in construction of configuration arguments,
namely s/CONFIGURE_ARGS=/CONFIGURE_ARGS+=/. This fixes the GIMP 1.2.x
dependency.
Notes
Notes:
svn path=/head/; revision=97473
-rw-r--r-- | graphics/xsane/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/graphics/xsane/Makefile b/graphics/xsane/Makefile index f4d250eea01b..37a4dc9bcb4e 100644 --- a/graphics/xsane/Makefile +++ b/graphics/xsane/Makefile @@ -40,7 +40,7 @@ CONFIGURE_ARGS+= --disable-gimp USE_GNOME= gtk20 .else USE_GNOME= gtk12 -CONFIGURE_ARGS= --disable-gtk2 +CONFIGURE_ARGS+= --disable-gtk2 .endif pre-everything:: |