Fix obvious typo which caused a NetBSD system to be recognised

as a FreeBSD one.
This commit is contained in:
agc 1997-10-15 16:37:56 +00:00
parent 0b0db52e6a
commit 10f0d54373
2 changed files with 2 additions and 2 deletions

View file

@ -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

View file

@ -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