We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0fca4af commit 69e5d63Copy full SHA for 69e5d63
src/backend/port/aix/mkldexport.sh
@@ -17,7 +17,19 @@
17
#
18
19
# setting this to nm -B might be better
20
-NM=/usr/ucb/nm
+# ... due to changes in AIX 4.x ...
21
+# ... let us search in different directories - Gerhard Reithofer
22
+if [ -x /usr/ucb/nm ]
23
+then NM=/usr/ucb/nm
24
+elif [ -x /usr/bin/nm ]
25
+then NM=/usr/bin/nm
26
+elif [ -x /usr/ccs/bin/nm ]
27
+then NM=/usr/ccs/bin/nm
28
+elif [ -x /usr/usg/bin/nm ]
29
+then NM=/usr/usg/bin/nm
30
+else echo "Fatal error: cannot find `nm' ... please check your installation."
31
+ exit 1
32
+fi
33
34
CMDNAME=`basename $0`
35
if [ -z "$1" ]; then
0 commit comments