diff options
author | sbd <sbd@pkgsrc.org> | 2011-01-31 08:18:44 +0000 |
---|---|---|
committer | sbd <sbd@pkgsrc.org> | 2011-01-31 08:18:44 +0000 |
commit | eb4f5238cfce6a722f721234298349503c1e0bb1 (patch) | |
tree | 180df5743f921296fa631e7aa27e529276806056 /mk | |
parent | 1787773927c4d6f2c23e87c31818d6f4ef59d17e (diff) | |
download | pkgsrc-eb4f5238cfce6a722f721234298349503c1e0bb1.tar.gz |
Remove the unneeded backslashes from the AIX OS_VERSION setting.
Closes PR/44421.
Diffstat (limited to 'mk')
-rw-r--r-- | mk/bsd.prefs.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mk/bsd.prefs.mk b/mk/bsd.prefs.mk index d6f55ab373e..12737fd67c7 100644 --- a/mk/bsd.prefs.mk +++ b/mk/bsd.prefs.mk @@ -1,4 +1,4 @@ -# $NetBSD: bsd.prefs.mk,v 1.312 2011/01/23 19:07:25 agc Exp $ +# $NetBSD: bsd.prefs.mk,v 1.313 2011/01/31 08:18:44 sbd Exp $ # # This file includes the mk.conf file, which contains the user settings. # @@ -115,7 +115,7 @@ _OS_VERSION!= /usr/bin/oslevel . else _OS_VERSION!= echo `${UNAME} -v`.`${UNAME} -r` . endif -OS_VERSION= ${_OS_VERSION:C/\([0-9]*\.[0-9]*\).*/\1/} +OS_VERSION= ${_OS_VERSION:C/([0-9]*\.[0-9]*).*/\1/} LOWER_OPSYS_VERSUFFIX= ${_OS_VERSION} LOWER_OPSYS?= aix LOWER_VENDOR?= ibm |