summaryrefslogtreecommitdiff
path: root/net-misc/nx/files/nx-3.5.99.27-which.patch
blob: 4d452dad0157a7b181e9b8fe3d2cbc844cfe2531 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
--- a/nx-X11/Makefile
+++ b/nx-X11/Makefile
@@ -70,7 +70,7 @@
 	else \
 	    exit 0; \
 	fi
-	which $(IMAKE) 1>/dev/null && $(IMAKE_CMD) $(MFLAGS) -s xmakefile -DTOPDIR=$(TOP) -DCURDIR=$(CURRENT_DIR)
+	command -v $(IMAKE) 1>/dev/null && $(IMAKE_CMD) $(MFLAGS) -s xmakefile -DTOPDIR=$(TOP) -DCURDIR=$(CURRENT_DIR)
 
 # don't allow any default rules in this Makefile
 .SUFFIXES:
--- a/nx-X11/extras/Mesa_6.4.2/bin/mklib
+++ b/nx-X11/extras/Mesa_6.4.2/bin/mklib
@@ -285,7 +285,7 @@
 		# -linker was not specified, choose default linker now
 		if [ $CPLUSPLUS = 1 ] ; then
 		    # determine linker and options for C++ code
-		    if [ `which c++` ] ; then
+		    if [ `command -v c++` ] ; then
 			# use Sun c++
 			LINK="c++"
 		    elif [ `type g++` ] ; then