diff options
author | nectar <nectar@FreeBSD.org> | 2004-01-06 21:31:16 +0800 |
---|---|---|
committer | nectar <nectar@FreeBSD.org> | 2004-01-06 21:31:16 +0800 |
commit | 56ba0c285fdf065a9c3e9cfbbaec60625dd0b30e (patch) | |
tree | 05f617ff7fd2507efdee4731102dd348c35679e4 /graphics/xsane | |
parent | dc755383ca9f44384763e3f9e1a0713f12653408 (diff) | |
download | freebsd-ports-gnome-56ba0c285fdf065a9c3e9cfbbaec60625dd0b30e.tar.gz freebsd-ports-gnome-56ba0c285fdf065a9c3e9cfbbaec60625dd0b30e.tar.zst freebsd-ports-gnome-56ba0c285fdf065a9c3e9cfbbaec60625dd0b30e.zip |
Correct a logic error in construction of configuration arguments,
namely s/CONFIGURE_ARGS=/CONFIGURE_ARGS+=/. This fixes the GIMP 1.2.x
dependency.
Diffstat (limited to 'graphics/xsane')
-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:: |