Filenames module name fixed

Former-commit-id: 5ea1331d6f
This commit is contained in:
Norayr Chilingarian 2013-11-12 16:36:07 +04:00
parent 2a551d0ec3
commit 7443364939
2 changed files with 3 additions and 3 deletions

View file

@ -155,8 +155,8 @@ stage6:
$(VOCSTATIC) -sP oocMsg.Mod oocChannel.Mod $(VOCSTATIC) -sP oocMsg.Mod oocChannel.Mod
$(VOCSTATIC) -sP oocStrings2.Mod oocRts.Mod oocFilenames.Mod $(VOCSTATIC) -sP oocStrings2.Mod oocRts.Mod oocFilenames.Mod
$(VOCSTATIC) -sP oocTextRider.Mod oocBinaryRider.Mod oocJulianDay.Mod $(VOCSTATIC) -sP oocTextRider.Mod oocBinaryRider.Mod oocJulianDay.Mod
$(VOCSTATIC) -sP oocwrapperlibc.Mod
$(VOCSTATIC) -sP oocFilenames.Mod $(VOCSTATIC) -sP oocFilenames.Mod
$(VOCSTATIC) -sP oocwrapperlibc.Mod
#Ulm's Oberon system libs #Ulm's Oberon system libs
$(VOCSTATIC) -sP ulmSys.Mod $(VOCSTATIC) -sP ulmSys.Mod

View file

@ -1,5 +1,5 @@
(* This module is obsolete. Don't use it. *) (* This module is obsolete. Don't use it. *)
MODULE Filenames; MODULE oocFilenames;
(* Note: It is not checked whether the concatenated strings fit into the (* Note: It is not checked whether the concatenated strings fit into the
variables given for them or not *) variables given for them or not *)
@ -184,5 +184,5 @@ PROCEDURE ExpandPath*(VAR full: ARRAY OF CHAR; path: ARRAY OF CHAR);
END END
END ExpandPath; END ExpandPath;
END Filenames. END oocFilenames.