Changeset 501 in kBuild for vendor/gnumake/current/tests/scripts/functions/realpath
- Timestamp:
- Sep 15, 2006 2:30:32 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
vendor/gnumake/current/tests/scripts/functions/realpath
r283 r501 21 21 endif 22 22 23 ifneq ($(realpath ///),/)24 $(error )25 endif26 27 23 ifneq ($(realpath /.),/) 28 $(error )29 endif30 31 ifneq ($(realpath ///.),/)32 24 $(error ) 33 25 endif … … 42 34 43 35 ifneq ($(realpath /..),/) 44 $(error )45 endif46 47 ifneq ($(realpath ///..),/)48 36 $(error ) 49 37 endif … … 64 52 all: ; @: 65 53 ', 66 '', 67 ''); 54 '', 55 ''); 56 57 # On Windows platforms, "//" means something special. So, don't do these 58 # tests there. 59 60 if ($port_type ne 'W32') { 61 run_make_test(' 62 ifneq ($(realpath ///),/) 63 $(error ) 64 endif 65 66 ifneq ($(realpath ///.),/) 67 $(error ) 68 endif 69 70 ifneq ($(realpath ///..),/) 71 $(error ) 72 endif 73 74 .PHONY: all 75 all: ; @:', 76 '', 77 ''); 78 } 68 79 69 80
Note:
See TracChangeset
for help on using the changeset viewer.