Changes by: antona
Update of /cvsroot/linux-ntfs/linux-ntfs
In directory usw-pr-cvs1:/tmp/cvs-serv8956
Modified Files:
Makefile
Log Message:
Fixed the compilation issues.
Index: Makefile
===================================================================
RCS file: /cvsroot/linux-ntfs/linux-ntfs/Makefile,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** Makefile 2001/01/30 12:29:03 1.1
--- Makefile 2001/01/30 12:55:21 1.2
***************
*** 6,10 ****
NTFSRELEASE = $(VERSION).$(PATCHLEVEL).$(SUBLEVEL)$(EXTRAVERSION)
! TOPDIR := $(shell pushd . > /dev/null; cd ..; if [ "$$PWD" != "" ]; then echo $$PWD; else pwd; fi; popd > /dev/null)
HPATH = $(TOPDIR)/include
--- 6,10 ----
NTFSRELEASE = $(VERSION).$(PATCHLEVEL).$(SUBLEVEL)$(EXTRAVERSION)
! TOPDIR := $(shell if [ "$$PWD" != "" ]; then echo $$PWD; else pwd; fi)
HPATH = $(TOPDIR)/include
***************
*** 38,42 ****
rm -f `find $(TOPDIR) \( -name '*.[oas]' -or -name core -or -name \
".*.flags" -or -name "*~" \) -type f -exec rm "{}" \;`
! rm -f $(TOPDIR)/bin/* $(TOPDIR)/lib/*
utils:
--- 38,42 ----
rm -f `find $(TOPDIR) \( -name '*.[oas]' -or -name core -or -name \
".*.flags" -or -name "*~" \) -type f -exec rm "{}" \;`
! rm -f $(TOPDIR)/bin/ntfsfix $(TOPDIR)/lib/libntfs.*
utils:
|