diff options
author | agc <agc@pkgsrc.org> | 1997-10-15 16:37:56 +0000 |
---|---|---|
committer | agc <agc@pkgsrc.org> | 1997-10-15 16:37:56 +0000 |
commit | 10f0d54373b41d8a98079c5c8443a48841930ee9 (patch) | |
tree | 03c50f2a06bffd2908d18586415b6de8ef938f67 /sysutils/amanda | |
parent | 0b0db52e6a2d17ae2e054b4d169b4de43551b229 (diff) | |
download | pkgsrc-10f0d54373b41d8a98079c5c8443a48841930ee9.tar.gz |
Fix obvious typo which caused a NetBSD system to be recognised
as a FreeBSD one.
Diffstat (limited to 'sysutils/amanda')
-rw-r--r-- | sysutils/amanda/scripts/configure | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysutils/amanda/scripts/configure b/sysutils/amanda/scripts/configure index dc21ca87784..fc57653a182 100644 --- a/sysutils/amanda/scripts/configure +++ b/sysutils/amanda/scripts/configure @@ -4,7 +4,7 @@ CFLAGS=`cat /tmp/build-ports-misc-amanda-cflags` rm /tmp/build-ports-misc-amanda-cflags echo $CFLAGS -if [ "X`uname -s`" = "NetBSD" ]; then +if [ "X`uname -s`" = X"NetBSD" ]; then mv $WRKSRC/config/config.h-netbsd1 $WRKSRC/config/config.h else mv $WRKSRC/config/config.h-freebsd2 $WRKSRC/config/config.h |