diff options
author | agc <agc> | 1997-10-15 16:37:56 +0000 |
---|---|---|
committer | agc <agc> | 1997-10-15 16:37:56 +0000 |
commit | 387a68b656b40611faed4604d142213de1b2d447 (patch) | |
tree | 03c50f2a06bffd2908d18586415b6de8ef938f67 /sysutils/amanda | |
parent | 3fe3171896315fe68079dca5688b0b9573cca589 (diff) | |
download | pkgsrc-387a68b656b40611faed4604d142213de1b2d447.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 |