diff options
author | cperciva <cperciva@FreeBSD.org> | 2005-10-27 08:10:40 +0800 |
---|---|---|
committer | cperciva <cperciva@FreeBSD.org> | 2005-10-27 08:10:40 +0800 |
commit | fe9ce93be1188c04db2cd5927e49da507fcc490f (patch) | |
tree | 45153e9564bbae2feaa4a009fbc1b34a1a5a656a /sysutils | |
parent | fb295cf60266977616819473d84876358b105e94 (diff) | |
download | freebsd-ports-gnome-fe9ce93be1188c04db2cd5927e49da507fcc490f.tar.gz freebsd-ports-gnome-fe9ce93be1188c04db2cd5927e49da507fcc490f.tar.zst freebsd-ports-gnome-fe9ce93be1188c04db2cd5927e49da507fcc490f.zip |
Replace IGNORE="foo (bar)" with IGNORE='foo (bar)'. With double
quotes, sh chokes on the parentheses.
Submitted by: Peter Schuller
Approved by: flz
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/est/Makefile | 2 | ||||
-rw-r--r-- | sysutils/estctrl/Makefile | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sysutils/est/Makefile b/sysutils/est/Makefile index fd9164b16b4a..34bc560e7108 100644 --- a/sysutils/est/Makefile +++ b/sysutils/est/Makefile @@ -26,7 +26,7 @@ PLIST_FILES= modules/est.ko \ .include <bsd.port.pre.mk> .if ${OSVERSION} > 600015 -IGNORE= "est now contained in the base system (see cpufreq(4))" +IGNORE= 'est now contained in the base system (see cpufreq(4))' .endif post-extract: diff --git a/sysutils/estctrl/Makefile b/sysutils/estctrl/Makefile index 2fbb65e3ec11..12b8a1ce7c11 100644 --- a/sysutils/estctrl/Makefile +++ b/sysutils/estctrl/Makefile @@ -29,7 +29,7 @@ MAKE_ENV= BINDIR=${PREFIX}/sbin .include <bsd.port.pre.mk> .if ${OSVERSION} > 600015 -IGNORE= "estctrl now contained in the base system (see powerd(8))" +IGNORE= 'estctrl now contained in the base system (see powerd(8))' .endif post-extract: |