Fix obvious typo which caused a NetBSD system to be recognised
as a FreeBSD one.
This commit is contained in:
parent
0b0db52e6a
commit
10f0d54373
2 changed files with 2 additions and 2 deletions
2
misc/amanda/scripts/configure
vendored
2
misc/amanda/scripts/configure
vendored
|
@ -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
|
||||
|
|
2
sysutils/amanda/scripts/configure
vendored
2
sysutils/amanda/scripts/configure
vendored
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue